@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --color-honey: #FFB800;
    --color-honey-dark: #E6A500;
    --color-honey-light: #FFF4D6;
    --color-black: #0A0A0A;
    --color-gray: #1A1A1A;
    --color-gray-light: #2A2A2A;
    --color-white: #FFFFFF;
    --color-text: #E0E0E0;
    --color-text-dim: #999999;

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--color-black);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.bee-icon {
    width: 40px;
    height: 40px;
    animation: float 3s ease-in-out infinite;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--ease-out-expo);
    position: relative;
}

.nav-links a:not(.cta-btn):hover {
    color: var(--color-honey);
}

.nav-links a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-honey);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:not(.cta-btn):hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--color-honey);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s var(--ease-out-expo);
}

.cta-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 184, 0, 0.03) 50px, rgba(255, 184, 0, 0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 184, 0, 0.03) 50px, rgba(255, 184, 0, 0.03) 51px);
    opacity: 0.5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    background: linear-gradient(135deg, var(--color-honey) 0%, var(--color-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out-expo) 0.6s forwards;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out-expo) 0.8s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-honey);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-honey);
}

.btn-secondary:hover {
    background: var(--color-honey);
    color: var(--color-black);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out-expo) 1s forwards;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-honey);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out-expo) 0.5s forwards;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--color-gray);
    border-radius: 40px;
    padding: 20px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 184, 0, 0.2);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    padding: 1rem 1.25rem;
    border-radius: 20px;
    max-width: 80%;
    font-size: 0.95rem;
    animation: bubbleIn 0.5s var(--ease-out-expo);
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-bubble.incoming {
    background: var(--color-honey);
    color: var(--color-black);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background: var(--color-gray-light);
    color: var(--color-white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.typing {
    display: flex;
    gap: 0.4rem;
    padding: 1rem 1.5rem;
}

.chat-bubble.typing span {
    width: 8px;
    height: 8px;
    background: var(--color-black);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.chat-bubble.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-bubble.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.floating-bees {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bee {
    position: absolute;
    font-size: 2rem;
    animation: flyAround 8s infinite;
}

.bee-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bee-2 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.bee-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 4s;
}

@keyframes flyAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -30px) rotate(15deg);
    }
    50% {
        transform: translate(100px, 20px) rotate(-10deg);
    }
    75% {
        transform: translate(50px, 50px) rotate(20deg);
    }
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-gray) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-dim);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--color-gray-light);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-honey), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-honey);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--color-honey);
    transition: transform 0.4s var(--ease-out-expo);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    color: var(--color-text-dim);
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-honey);
    font-weight: 700;
}

/* Benefits Section */
.benefits {
    padding: 8rem 2rem;
    background: var(--color-black);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--color-honey), transparent);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
    position: relative;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-honey) 0%, rgba(255, 184, 0, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--color-text-dim);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: var(--color-gray);
    position: relative;
    overflow: hidden;
}

.honeycomb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--color-honey);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    font-family: var(--font-body);
    margin-bottom: 1rem;
}

.btn-large:hover {
    background: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-dim);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: var(--color-text-dim);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s var(--ease-out-expo);
}

.footer-section a:hover {
    color: var(--color-honey);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    text-align: center;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
