/* URBot.net — Event Coordination Timeline Bot Styles */
/* Accent: #1A5276 (navy blue — professional coordination) */

:root {
    --bot-accent: #1A5276;
    --bot-accent-dim: rgba(26, 82, 118, 0.15);
    --bot-accent-glow: rgba(26, 82, 118, 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: #1A5276;
}

*, *::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;
    min-height: 100vh;
    overflow-x: hidden;
}

.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.header-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.2s;
}
.header-back:hover { color: var(--bot-accent); }

.header-bot {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bot-accent-dim);
    border: 2px solid var(--bot-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 20px var(--bot-accent-glow);
}

.avatar {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.bot-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.category-badge {
    display: inline-block;
    background: var(--bot-accent-dim);
    color: #5dade2;
    border: 1px solid var(--bot-accent);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== HERO ===== */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.tagline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #5dade2;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1A5276, #154360);
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(26, 82, 118, 0.4);
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 82, 118, 0.5);
}

/* ===== SECTIONS ===== */
.section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* ===== FEATURES ===== */
.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2.25rem;
}

.feature-item::before {
    content: '\2713';
    position: absolute;
    left: 0.85rem;
    top: 1rem;
    color: #5dade2;
    font-weight: 700;
}

/* ===== DISCLAIMER ===== */
.disclaimer-section {
    background: rgba(255, 68, 68, 0.06);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #fca5a5;
}

/* ===== TIER GRID ===== */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.tier-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.75rem;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.tier-card:hover {
    border-color: #5dade2;
    transform: translateY(-2px);
}

.tier-card.popular {
    border-color: #5dade2;
    box-shadow: 0 0 30px rgba(93, 173, 226, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1A5276;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.tier-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5dade2;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.tier-license {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.tier-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tier-includes li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border-subtle);
    padding-left: 1.25rem;
    position: relative;
}
.tier-includes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #5dade2;
    font-size: 0.75rem;
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #1A5276;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.buy-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.checkout-form {
    margin-top: 0.75rem;
}
.checkout-form input[type="email"] {
    width: 100%;
    padding: 0.6rem 0.85rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-accent);
    border-radius: 7px;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}
.checkout-form input[type="email"]:focus {
    outline: none;
    border-color: #5dade2;
}
.checkout-submit {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, #1A5276, #154360);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}
.checkout-submit:hover { opacity: 0.9; }
.checkout-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.discount-badge {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: #fbbf24;
    margin-top: 0.5rem;
    font-weight: 600;
}
.checkout-error {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--error-color);
    margin-top: 0.5rem;
}

/* ===== STEPS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.step {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.step-number {
    width: 40px;
    height: 40px;
    background: #1A5276;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text-secondary); }

/* ===== CHAT DEMO ===== */
.chat-demo {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.chat-msg {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 85%;
}
.chat-msg--user { align-self: flex-end; align-items: flex-end; }
.chat-msg--bot { align-self: flex-start; align-items: flex-start; }
.chat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.chat-text {
    background: var(--dark-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.chat-msg--user .chat-text {
    background: rgba(26, 82, 118, 0.15);
    border-color: #1A5276;
    color: var(--text-primary);
}

/* ===== PACKAGE CONTENTS ===== */
.package-contents {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.package-file {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.file-icon { font-size: 1.2rem; }

/* ===== TRUST ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.trust-item {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.trust-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-item h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.trust-item p { font-size: 0.825rem; color: var(--text-secondary); }

/* ===== SIGNUP ===== */
.signup-section { text-align: center; }
.signup-subtitle { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 0.95rem; }
.signup-form {
    display: flex;
    gap: 0.75rem;
    max-width: 420px;
    margin: 0 auto;
}
.signup-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}
.signup-form input:focus { outline: none; border-color: #5dade2; }
.signup-form button {
    padding: 0.65rem 1.5rem;
    background: #1A5276;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.signup-form button:hover { opacity: 0.9; }
.privacy-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ===== FOOTER ===== */
.footer {
    padding: 2.5rem 0;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #5dade2; }
.footer-principle {
    font-size: 0.85rem;
    color: #5dade2;
    font-style: italic;
    margin-bottom: 0.5rem;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .tagline { font-size: 1.35rem; }
    .tier-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .signup-form { flex-direction: column; }
    .header { flex-wrap: wrap; }
    .feature-list { grid-template-columns: 1fr; }
}
