/* ════════════════════════════════════════════════════════
   AXIOM — Landing Page Styles
   Extends the core design system (axiom.css)
   ════════════════════════════════════════════════════════ */

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(10, 15, 20, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
}
.brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    padding: 8px 20px !important;
    border: 1px solid var(--gold) !important;
    border-radius: 8px !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--gold-glow) !important;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(126,184,224,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(126,184,224,0.08);
    border: 1px solid rgba(126,184,224,0.2);
    border-radius: 99px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.text-gold-gradient {
    background: linear-gradient(135deg, #7eb8e0, #a8d4f0, #7eb8e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-actions .btn { width: auto; }
.hero-actions .btn-primary { width: auto; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    padding: 14px 24px;
    transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}
.proof-avatars {
    display: flex;
}
.proof-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-right: -8px;
    border: 2px solid var(--bg-primary);
}
.hero-mascot {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
    min-height: 600px;
}
#mascot-canvas {
    width: 100%;
    height: 500px;
    display: block;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: floatUp 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    opacity: 0.5;
}
@keyframes floatUp {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Bar ── */
.trust-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}
.trust-label {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.trust-logo:hover { opacity: 1; }

/* ── Sections ── */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bg-secondary);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-glow);
    border: 1px solid rgba(126,184,224,0.2);
    border-radius: 99px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}
.text-gold { color: var(--gold); }

/* ── Features Grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.08);
}
.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Steps ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.step-card {
    text-align: center;
    padding: 40px 24px;
}
.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
    font-family: 'Inter', monospace;
}
.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(126,184,224,0.3);
    transform: translateY(-4px);
}
.pricing-featured {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212,175,55,0.1);
    transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: #0a0f14;
    font-size: 12px;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-tier {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 24px;
}
.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}
.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(30,48,64,0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}
.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* ── Partner ── */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s;
}
.partner-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.partner-pct {
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}
.partner-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.partner-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── CTA Section ── */
.cta-section {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(126,184,224,0.06) 0%, transparent 60%),
        var(--bg-primary);
}
.cta-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* ── Footer ── */
.site-footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Fixed Blob Mascot (bottom-right corner) ── */
.blob-mascot-wrap {
    position: fixed;
    bottom: -340px;
    right: 20px;
    width: 280px;
    height: 340px;
    z-index: 999;
    pointer-events: none;
    transition: bottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.blob-mascot-wrap.visible {
    bottom: -80px;
}
.blob-mascot-wrap canvas {
    width: 100%;
    height: 100%;
}
.blob-speech {
    position: absolute;
    top: 10px;
    left: -30px;
    background: rgba(255, 140, 50, 0.12);
    border: 1px solid rgba(255, 140, 50, 0.3);
    backdrop-filter: blur(8px);
    color: #FF8C32;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 12px 12px 2px 12px;
    white-space: nowrap;
    animation: blobSpeech 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes blobSpeech {
    0%, 60%, 100% { opacity: 1; transform: translateY(0); }
    80% { opacity: 0.3; transform: translateY(-5px); }
}
.hero-orb {
    width: 280px;
    height: 280px;
    margin: auto;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(126,184,224,0.25) 0%, rgba(90,159,199,0.15) 40%, rgba(126,184,224,0.05) 70%, transparent 100%);
    box-shadow: 0 0 60px rgba(126,184,224,0.15), 0 0 120px rgba(90,159,199,0.08), inset 0 0 60px rgba(126,184,224,0.1);
    animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* ── Responsive ── */
/* ── Robot container ── */
.robot-container {
    position: absolute;
    bottom: 0;
    right: calc(50% - 600px);
    width: 600px;
    height: 600px;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-mascot { min-height: 0; display: none; }
    #mascot-canvas { display: none; }
    .features-grid, .steps-grid, .pricing-grid, .partner-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .robot-container {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 350px;
        margin: 0 auto;
        max-width: 350px;
    }
}
@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10,15,20,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero-scroll-indicator { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .robot-container {
        height: 280px;
        max-width: 280px;
    }
}
