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

body {
    font-family: 'Work Sans', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

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

.nav {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

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

.nav-brand {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.375rem;
}

.hero-note {
    margin-top: 1rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.problem {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.side {
    background: var(--bg-elevated);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.side-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.side h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.side ul {
    list-style: none;
    margin-bottom: 2rem;
}

.side li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 600;
    color: var(--text-secondary);
}

.side li::before {
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.bad li::before {
    content: "×";
    color: #ee5a6f;
}

.good li::before {
    content: "✓";
    color: #0be881;
}

.badge-bad,
.badge-good {
    font-weight: 800;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-bad {
    background: #ee5a6f;
    color: white;
}

.badge-good {
    background: linear-gradient(135deg, #0be881 0%, #0fb9b1 100%);
    color: white;
}

.arrow {
    font-size: 3rem;
    color: var(--text-tertiary);
}

.how {
    padding: 4rem 0;
}

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

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-elevated);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.step h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

.stories {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.story-card {
    background: var(--bg-elevated);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.company {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: white;
}

.name {
    font-weight: 700;
    font-size: 1rem;
}

.meta {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge.new {
    background: #ff6b6b;
    color: white;
}

.badge.hot {
    background: #feca57;
    color: #1e1e1e;
}

.story-content {
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 1rem;
}

.gradient-alert {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #0be881 0%, #0fb9b1 100%);
}

.gradient-energy {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
}

.gradient-tech {
    background: linear-gradient(135deg, #48dbfb 0%, #0fb9b1 100%);
}

.story-content .emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.story-content .title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.75rem;
    color: white;
}

.summary {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.engagement {
    display: flex;
    gap: 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.features {
    padding: 4rem 0;
}

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

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-elevated);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

.cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 100%);
}

.cta-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.footer {
    background: var(--bg-elevated);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.25rem;
}

.links {
    display: flex;
    gap: 2rem;
}

.links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

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

.legal {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .comparison,
    .steps,
    .stories-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .hero-stats {
        gap: 2rem;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }
}
