:root {
    --primary: #9575CD; /* Medium Purple */
    --primary-light: #D1C4E9; /* Light Purple */
    --primary-dark: #512DA8; /* Deep Purple */
    --accent: #FFD600; /* Gold Accent */
    --text-dark: #311B92;
    --text-muted: #5E35B1;
    --bg-light: #F3E5F5;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Animations --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes borderDraw {
    from { width: 0; }
    to { width: 100%; }
}

.animate-float { animation: float 5s ease-in-out infinite; }
.animate-fade-in { animation: fadeInScale 1s ease-out forwards; }
.animate-slide { animation: slideRight 0.8s ease-out forwards; }

/* --- Navigation --- */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--primary-dark);
}

nav a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(149, 117, 205, 0.1);
    border-radius: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-button {
    padding: 18px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(149, 117, 205, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-5px);
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(149, 117, 205, 0.4);
}

/* --- Sections --- */
section {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* --- Cards & Grid --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(149, 117, 205, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(149, 117, 205, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

/* --- Product Visual --- */
.product-visual {
    background: white;
    padding: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: inset 0 0 50px rgba(149, 117, 205, 0.1);
}

.robot-body {
    width: 120px;
    height: 200px;
    background: linear-gradient(to right, #e0e0e0, #ffffff);
    border-radius: 60px 60px 20px 20px;
    position: relative;
    border: 2px solid #ccc;
}

.robot-head {
    width: 100px;
    height: 80px;
    background: white;
    border-radius: 40px;
    position: absolute;
    top: -90px;
    left: 10px;
    border: 2px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.robot-eyes {
    display: flex;
    gap: 15px;
}

.robot-eye {
    width: 15px;
    height: 15px;
    background: #00e5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00e5ff;
}

.robot-screen {
    width: 80px;
    height: 60px;
    background: #202124;
    border-radius: 10px;
    margin: 20px auto;
    border: 2px solid #555;
    position: relative;
    overflow: hidden;
}

.robot-screen::after {
    content: 'HEARTBEAT';
    font-size: 8px;
    color: #00ff00;
    position: absolute;
    top: 50%;
    left: 5px;
}

/* --- Footer --- */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 50px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* --- Table --- */
.finance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.finance-table th, .finance-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.finance-table th {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    header { padding: 15px 20px; }
    nav ul { display: none; } /* Mobile menu toggle would go here */
    section { padding: 60px 20px; }
}
