* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: #050505;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    min-height: 100vh;
    padding: 60px 20px 80px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(255, 196, 62, 0.18), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111111 55%, #1b1200 100%);
}

.logo {
    width: 170px;
    height: auto;
    border-radius: 22px;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(255, 188, 43, 0.18);
}

.hero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.05;
    margin: 15px auto;
    max-width: 950px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 28px);
    color: #dedede;
    max-width: 760px;
    margin: 20px auto 35px;
}

.hero-buttons {
    margin-bottom: 45px;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f5b931, #ffe28a);
    color: #111111;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 35px rgba(255, 196, 62, 0.25);
}

.button.secondary {
    background: transparent;
    color: #f5c84b;
    border: 1px solid #f5c84b;
    box-shadow: none;
}

.hero-cover {
    width: 100%;
    max-width: 1100px;
    border-radius: 28px;
    border: 1px solid rgba(255, 199, 75, 0.25);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

section {
    padding: 90px 20px;
}

h2 {
    text-align: center;
    font-size: clamp(32px, 4vw, 52px);
    margin: 0 0 50px;
    letter-spacing: -1px;
}

.features {
    background: #070707;
}

.feature-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: linear-gradient(180deg, #141414, #0c0c0c);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    min-height: 190px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.card h3 {
    color: #ffffff;
    margin-top: 0;
    font-size: 22px;
}

.card p {
    color: #cfcfcf;
    margin: 12px 0;
}

.card:hover {
    border-color: rgba(255, 199, 75, 0.45);
    transform: translateY(-3px);
    transition: 0.2s ease;
}

.screenshots {
    background:
        radial-gradient(circle at center, rgba(255, 196, 62, 0.12), transparent 42%),
        #050505;
}

.screenshot-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.screenshot-grid img {
    width: 285px;
    border-radius: 28px;
    border: 1px solid rgba(255, 199, 75, 0.25);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
}

.pricing {
    background: #080808;
}

.pricing-grid {
    max-width: 850px;
    margin: auto;
}

.price {
    font-size: 34px;
    font-weight: 900;
    color: #f5c84b !important;
}

.featured {
    border-color: rgba(245, 200, 75, 0.8);
    box-shadow: 0 0 45px rgba(245, 200, 75, 0.18);
    position: relative;
}

.featured::before {
    content: "Best Value";
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, #f5b931, #ffe28a);
    color: #111;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

footer {
    padding: 35px 20px;
    text-align: center;
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer a {
    color: #f5c84b;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 700;
}

footer p {
    color: #888;
    margin-top: 20px;
}

@media (max-width: 700px) {
    .logo {
        width: 130px;
    }

    .hero {
        padding-top: 40px;
    }

    .button {
        width: 90%;
        max-width: 320px;
    }

    .screenshot-grid img {
        width: 85%;
    }
}