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

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

:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #f8f8f8;
    --card-foreground: #1a1a1a;
    --primary: #2e7d32;
    --primary-light: #4caf50;
    --primary-dark: #1b5e20;
    --primary-foreground: #ffffff;
    --muted: #e0e0e0;
    --muted-foreground: #666666;
    --accent: #f0f0f0;
    --border: #d0d0d0;
    --shadow-light: #ffffff;
    --shadow-dark: #c0c0c0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.clay-canvas {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.content-wrapper {
    width: 100%;
    max-width: 40rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Minecraft-inspired blocks */
.minecraft-block {
    position: relative;
}

.minecraft-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-left: 2px solid rgba(46, 125, 50, 0.2);
    border-top: 2px solid rgba(46, 125, 50, 0.2);
}

.minecraft-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* Minimalistic shadow */
.neu-raised {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.08), -1px -1px 3px rgba(255, 255, 255, 0.8);
    background-color: var(--background);
    border: 1px solid var(--border);
}

.neu-raised-lg {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1), -2px -2px 6px rgba(255, 255, 255, 0.9);
    background-color: var(--card);
    border: 1px solid var(--border);
}

/* Icons */
.icon-box {
    border-radius: 1.25rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f6 100%);
    color: var(--primary);
    border: 2px solid var(--primary-light);
}

/* Hero Section */
.hero-capsule {
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    border: 2px solid var(--border);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

@media (min-width: 640px) {
    .hero-capsule {
        padding: 3.5rem 3rem;
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--primary-dark);
    position: relative;
}

.hero-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0.5rem auto 0;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    max-width: 28rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Sound Wave with Watch */
.watch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 1.5rem;
    border: 2px solid var(--primary-light);
    padding: 1rem;
    box-shadow: inset 2px 2px 4px rgba(79, 195, 247, 0.1), 
                3px 3px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.watch-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    border-radius: 1.5rem 1.5rem 0 0;
}

.soundwave-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 3rem;
}

.soundwave-bar {
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 1px;
    animation: wave 0.8s ease-in-out infinite;
    transform-origin: bottom;
    box-shadow: 0 2px 4px rgba(46, 125, 50, 0.3);
}

@keyframes wave {
    0%, 100% {
        height: 30%;
    }
    50% {
        height: 100%;
    }
}

/* Countdown */
.countdown-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.countdown-box {
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border: 2px solid var(--border);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.countdown-number {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary);
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Lead Capture Form */
.lead-form {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    flex-direction: column;
}

@media (min-width: 640px) {
    .lead-form {
        flex-direction: row;
    }
}

.form-group {
    flex: 1;
    display: flex;
    border-radius: 0.875rem;
    overflow: hidden;
    background: var(--card);
    border: 2px solid var(--border);
}

.form-group input {
    width: 100%;
    background: transparent;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    border: none;
    outline: none;
}

.form-group input::placeholder {
    color: var(--muted-foreground);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--primary-foreground);
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    border-radius: 0.875rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.3);
}

/* Success Message */
.lead-success {
    width: 100%;
}

.success-box {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid var(--primary-light);
}

.success-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

.success-message {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* Footer */
.footer-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .footer-items {
        gap: 3rem;
    }
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.2s;
}

.footer-item:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary);
}

.footer-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.footer-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Link */
.contact-link {
    text-align: center;
    padding-top: 1rem;
}

.contact-link a {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: rgba(46, 125, 50, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.contact-link a:hover {
    background: rgba(46, 125, 50, 0.1);
    text-decoration: none;
    transform: translateX(2px);
}

/* Copyright */
.copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

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

.min-h-screen {
    min-height: 100vh;
}

/* Contact Page Specific */
.contact-container {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.mail-icon {
    color: var(--primary);
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 1.25rem;
    padding: 1.5rem;
    width: 100%;
    border: 2px solid var(--border);
}

@media (min-width: 640px) {
    .contact-form {
        padding: 2rem;
    }
}

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-field label svg {
    width: 16px;
    height: 16px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: linear-gradient(135deg, var(--card), var(--accent));
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted-foreground);
}

.form-field textarea {
    resize: none;
}

.form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.back-link {
    text-align: center;
    margin-top: 1rem;
}

.back-link a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    display: inline-block;
}

.back-link a:hover {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.contact-info {
    text-align: center;
    margin: 2rem 0;
}

.contact-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Loading state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Green accent blocks */
.accent-block {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(76, 175, 80, 0.05));
    border-left: 4px solid var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

/* Logo styles */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    padding-top: 0;
}

.logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-container a:hover {
    transform: scale(1.08);
}

.logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
}

.logo-container a:hover .logo {
    filter: none;
}
