:root {
    --minto-green: #71E871;
    --minto-green-hover: #5ecf5e;
    --bg-light: #F6F6F9;
    --text-main: #111111;
    --text-muted: #64748B;
    --border-color: rgba(0, 0, 0, 0.08);
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 120px);
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 520px;
}

.hero-title {
    font-size: 78px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--minto-green);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: var(--minto-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(113, 232, 113, 0.4);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: #E8E8ED;
    transform: translateY(-2px);
}

/* Hero Graphic Area */
.hero-graphic {
    flex: 1.2;
    background-color: var(--bg-light);
    border-radius: 40px;
    height: 640px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.floating-tooltip {
    position: absolute;
    top: 60px;
    right: 80px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 20;
    animation: float 5s ease-in-out infinite alternate;
}

.tooltip-dot {
    width: 10px;
    height: 10px;
    background: var(--minto-green);
    border-radius: 50%;
}

}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.hero-3d-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-3d-img:hover {
    transform: scale(1.05) rotate(1deg);
}

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

.animate-float-3d {
    animation: float-3d 6s ease-in-out infinite;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 120px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--minto-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }
    .hero-graphic {
        width: 100%;
        margin-bottom: 60px;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile Specific (Phones) */
@media (max-width: 600px) {
    .container {
        padding: 0 24px 40px;
    }
    header {
        padding: 30px 0;
    }
    .hero {
        margin-top: 20px;
        gap: 30px;
    }
    .hero-title {
        font-size: 44px;
        line-height: 1.1;
        letter-spacing: -2px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-graphic {
        padding: 0;
    }
    .hero-3d-img {
        max-width: 100%;
    }
}
