/* Axis - Business Advice Platform Styles */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    position: relative;
    z-index: 100;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #666;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 24px;
    color: #667eea;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #10b981;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
}

.connection-status i {
    animation: fadeInOut 2s infinite;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 60vh;
    margin-bottom: 80px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.hero-title .highlight {
    position: relative;
    color: #1a1a1a;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(
        45deg,
        #ff4444,
        #ff4444 2px,
        transparent 2px,
        transparent 6px
    );
    z-index: -1;
    border-radius: 6px;
}

.cta-button {
    background: linear-gradient(135deg, #ff4444, #e63939);
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s ease-in-out infinite;
}

.cta-button:hover {
    background: linear-gradient(135deg, #e63939, #dc2626);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 68, 68, 0.5);
    }
}

.trial-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

/* Hero Right - WiFi Illustration */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wifi-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wifi-device {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.device-icon {
    width: 450px;
    height: 450px;
    border-radius: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.device-icon i {
    font-size: 3rem;
    color: white;
}

.wifi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.speech-bubble {
    position: absolute;
    top: 40px;
    left: -80px;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.action-bubble {
    position: absolute;
    top: 60px;
    right: -100px;
    background: #ff4444;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.action-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ff4444;
}

.connection-interface {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 5;
    min-width: 220px;
}

.wifi-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.speed-indicator {
    text-align: center;
}

.speed-indicator i {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 8px;
    animation: pulse 2s infinite;
}

.speed-indicator span {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.signal-strength {
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.signal-bar {
    width: 8px;
    background: #10b981;
    border-radius: 2px;
    animation: signalPulse 1.5s ease-in-out infinite;
}

.signal-bar:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.signal-bar:nth-child(2) {
    height: 15px;
    animation-delay: 0.2s;
}

.signal-bar:nth-child(3) {
    height: 20px;
    animation-delay: 0.4s;
}

.signal-bar:nth-child(4) {
    height: 25px;
    animation-delay: 0.6s;
}

.service-info-bubble {
    position: absolute;
    bottom: -40px;
    left: -50px;
    max-width: 280px;
    transform: none;
    z-index: 5;
}

.info-bubble {
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.info-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 2;
}

.info-bubble::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 48px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #e0e0e0;
    z-index: 1;
}

.info-bubble p {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px 0;
    margin-top: auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Trial Status Banner */
.trial-status-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trial-status-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trial-info-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trial-info-left i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.trial-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.trial-details p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

#trialCountdown {
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 700;
    font-size: 1rem;
}

.upgrade-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-btn:hover {
    background: white;
    color: #10b981;
}

/* Continue Access Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.continue-modal {
    max-width: 800px;
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.continue-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
}

.continue-plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.continue-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.continue-plan.popular {
    border-color: #ff4444;
    transform: scale(1.05);
}

.continue-plan.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.plan-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.select-continue-plan {
    width: 100%;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-continue-plan:hover {
    background: #333;
    transform: translateY(-2px);
}

.continue-plan.popular .select-continue-plan {
    background: #ff4444;
}

.continue-plan.popular .select-continue-plan:hover {
    background: #e63939;
}

/* Plan Info Button */
.plan-info-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.plan-info-btn:hover {
    background: white;
    transform: scale(1.1);
}

.plan-info-btn i {
    color: #667eea;
    font-size: 14px;
}

/* Plan Info Modal */
.plan-info-modal .modal-content {
    max-width: 500px;
}

.plan-info-content {
    padding: 30px;
}

.plan-price-large {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
}

.plan-price-large .currency {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.plan-price-large .amount {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin: 0 5px;
}

.plan-price-large .period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.plan-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 25px 0 15px 0;
}

.plan-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.plan-details i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
}

.plan-note {
    background: #fef3cd;
    border: 1px solid #fbbf24;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
}

.plan-note i {
    color: #d97706;
    margin-top: 2px;
}

.plan-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.4;
}

/* Payment Modal Styles */
.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #333;
}

.order-summary {
    padding: 30px;
    background: #f9fafb;
    margin: 0;
}

.order-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    border-top: 2px solid #e5e7eb;
    padding-top: 15px;
    margin-top: 15px;
}

.payment-form {
    padding: 30px;
}

.payment-form h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #6b7280;
    font-size: 0.9rem;
}

.pay-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.security-info {
    padding: 20px 30px 30px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 2rem;
    color: #6b7280;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        gap: 60px;
    }
    
    .service-info-bubble {
        left: -40px;
        max-width: 250px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-left {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    
    .cta-button {
        align-self: center !important;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .service-info-bubble {
        position: absolute;
        bottom: -40px;
        left: -20px;
        max-width: 280px;
        transform: none;
        margin-top: 0;
    }
    
    .info-bubble {
        padding: 15px;
    }
    
    .info-bubble::before {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid white;
        border-top: none;
    }
    
    .info-bubble::after {
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #e0e0e0;
        border-top: none;
    }
    
    .info-bubble p {
        text-align: left;
        font-size: 13px;
    }
    
    .stats-section {
        gap: 50px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
    }
    
    .logo {
        position: static;
        transform: none;
        order: -1;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .auth-buttons {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .wifi-illustration {
        max-width: 500px;
        height: 450px;
    }
    
    .device-icon {
        width: 320px;
        height: 320px;
    }
    
    .speech-bubble {
        left: -60px;
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .action-bubble {
        right: -80px;
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .connection-interface {
        right: -30px;
        min-width: 180px;
        padding: 15px;
    }
    
    .stats-section {
        gap: 40px;
        padding: 30px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .continue-plans {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .continue-plan.popular {
        transform: none;
    }
    
    .trial-status-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .wifi-illustration {
        max-width: 380px;
        height: 350px;
    }
    
    .device-icon {
        width: 250px;
        height: 250px;
    }
    
    .device-icon i {
        font-size: 2rem;
    }
    
    .wifi-image {
        border-radius: 10px;
    }
    
    .speech-bubble {
        left: -50px;
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .action-bubble {
        right: -70px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .connection-interface {
        right: -20px;
        min-width: 160px;
        padding: 12px;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Trial Activation Styles */
.trial-activation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    animation: fadeIn 0.3s ease;
}

.activation-content {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.activation-content i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
    animation: successBounce 0.6s ease;
}

.activation-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.activation-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.trial-countdown-display {
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    font-family: 'Monaco', 'Menlo', monospace;
}

/* Animation for the highlight underline */
@keyframes highlightGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-title .highlight::after {
    animation: highlightGrow 0.8s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Subtle animations */
.wifi-device {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes signalPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.speech-bubble, .action-bubble {
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}