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

:root {
    --bg-black: #141414;
    --text-white: #FAFAF6;
    --text-gray: #9a9a98;
    --orange: #EC5022;
    --orange-hover: #ff6e40;
    --border-gray: #343434;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo .orange-dot {
    color: var(--orange);
}

.coming-soon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero */
.hero {
    padding: 60px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
}

.orange-dot {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--orange-hover);
}

/* Hero Animation/Video */
.hero-animation {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.stat-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.stat-accent-bar {
    width: 3px;
    height: 100%;
    min-height: 80px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* What is Sam Section */
.what-is-sam {
    padding: 80px 0;
    border-top: 1px solid var(--border-gray);
}

.section-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 32px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    max-width: 800px;
}

.features-list li {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
}

.features-list li::before {
    content: "•";
    color: var(--orange);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.features-list strong {
    font-weight: 700;
}

.value-prop {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
    max-width: 800px;
}

.availability {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 800px;
    line-height: 1.8;
}

.availability strong {
    font-weight: 700;
}

/* Follow Section */
.follow-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.follow-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 16px;
}

.follow-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 40px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--border-gray);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-gray);
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #333;
    padding: 20px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 500px;
    z-index: 1000;
}

.cookie-banner p {
    font-size: 14px;
    color: #333;
}

.btn-cookie {
    background: #333;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.btn-cookie:hover {
    background: #444;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 48px;
    max-width: 500px;
    width: calc(100% - 48px);
    z-index: 2001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.2;
}

/* HubSpot Form Styling */
#hubspot-form-container {
    width: 100%;
}

#hubspot-form-container .hs-form {
    font-family: 'Inter', sans-serif !important;
}

#hubspot-form-container .hs-input {
    width: 100% !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    border: 2px solid var(--border-gray) !important;
    border-radius: 8px !important;
    background: var(--bg-black) !important;
    color: var(--text-white) !important;
    font-family: 'Inter', sans-serif !important;
    transition: border-color 0.3s ease !important;
}

#hubspot-form-container .hs-input:focus {
    outline: none !important;
    border-color: var(--orange) !important;
}

#hubspot-form-container .hs-input::placeholder {
    color: #666 !important;
}

#hubspot-form-container .hs-error-msgs {
    color: var(--orange) !important;
    font-size: 13px !important;
    margin-top: 4px !important;
}

#hubspot-form-container .hs-button {
    width: 100% !important;
    padding: 16px 32px !important;
    background: var(--orange) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    transition: background 0.3s ease !important;
}

#hubspot-form-container .hs-button:hover {
    background: var(--orange-hover) !important;
}

#hubspot-form-container .hs-form-field {
    margin-bottom: 16px !important;
}

#hubspot-form-container label {
    display: none !important;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 80px;
    }
}

/* Mobile Responsive */
@media (max-width: 680px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .header {
        padding: 20px 24px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .stat-number {
        font-size: 40px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .cookie-banner {
        flex-direction: column;
        bottom: 16px;
        max-width: calc(100% - 32px);
        text-align: center;
    }

    .btn-cookie {
        width: 100%;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 24px;
    }
}
