:root {
    --navy: #021A44;
    --orange: #ff8c42;
    --white: #ffffff;
    --light: #f4f6f8;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4px;
}

.container span {
    color: var(--orange);
}

.hero {
    text-align: center;
    padding: 0px 0px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.hero h2 {
    font-size: 2.8rem;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 1100px;
    margin: 0 auto 0px;
}

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

.button {
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: var(--orange);
    color: white;
}

.secondary {
    border: 2px solid white;
    color: white;
}

.section {
    padding: 20px 20px;
}

.alt {
    background: rgba(255,255,255,0.05);
}

.alt span {
    color: var(--orange);
}

.section h2 {
    margin-bottom: 24px;
    font-size: 2rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: white;
    color: #021A44;
    padding: 24px;
    border-radius: 16px;
    font-weight: 600;
}

.steps {
    margin-left: 24px;
}

footer {
    text-align: center;
    padding: 40px 20px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

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

.logo {
    width: 10px;
    height: 10px;
    margin-bottom: 30px;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    align-items: right;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.story-text span {
    color: var(--orange);
}

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 0px;
}

.logo-inline {
    width: 140px;
    height: auto;
}

.hero-title h1 {
    margin: 0;
}

.brand-name {
    margin: 0;
    font-size: 5rem;
    font-weight: 800;
}

.brand-name span {
    color: var(--orange);
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.screenshot-card {
    text-align: center;
}

.screenshot-card img {
    width: 180px;
    max-width: 280px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.screenshot-card h3 {
    margin-top: 18px;
    font-size: 1.2rem;
}

.contact-email a {
    color: white;
    text-decoration: none;
}

.contact-email a:hover {
    color: var(--orange);
}

.container h1,
.container h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.container p,
.container li {
    margin-bottom: 12px;
}

.container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 32px 0 48px;
    }

    .hero-title {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        margin-bottom: 32px;
    }

    .brand-name {
        font-size: 2.7rem;
        white-space: nowrap;
    }

    .logo-inline {
        width: 82px;
    }

    .hero > .container > h1 {
        font-size: 2.9rem;
        line-height: 1.08;
        margin: 0 0 20px;
    }

    .subtitle {
        font-size: 1.25rem;
        line-height: 1.4;
        max-width: 360px;
    }

    .section {
        padding: 48px 0;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .story-text h2,
    .section h2 {
        font-size: 2.2rem;
        line-height: 1.12;
    }

    .story-text p {
        font-size: 1.1rem;
        line-height: 1.55;
    }

    .story-image {
        text-align: center;
    }

    .story-image img {
        width: 100%;
        max-width: 320px;
    }

    .screenshots {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .screenshot-card img {
        width: 100%;
        max-width: 260px;
    }

    footer {
        padding: 32px 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
