/* ===========================================================
   DropMerge
   Copyright © 2026 Costas Chatzinikolas
   =========================================================== */

:root {

    --background: #ffffff;
    --surface: #f7f7f8;

    --text: #1d1d1f;
    --secondary: #6e6e73;

    --border: #e5e5e7;

    --accent: #0071e3;
    --accent-hover: #0077ed;

    --shadow:
        0 12px 40px rgba(0,0,0,.08);

    --radius: 18px;

}

/* ----------------------------------------------------------- */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "Helvetica Neue",
        sans-serif;

    background: var(--background);

    color: var(--text);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;

}

/* ----------------------------------------------------------- */

main {

    width: min(1100px, calc(100% - 40px));

    margin: auto;

}

/* ===========================================================
   HERO
   =========================================================== */

.hero {

    min-height: 92vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 80px 20px;

}

.app-icon {

    width: 150px;

    margin-bottom: 40px;

}

.hero h1 {

    font-size: clamp(52px, 8vw, 76px);

    font-weight: 700;

    letter-spacing: -.03em;

}

.subtitle {

    margin-top: 20px;

    font-size: clamp(26px,4vw,34px);

    color: var(--secondary);

}

.description {

    margin-top: 30px;

    max-width: 700px;

    font-size: 22px;

    color: var(--secondary);

}

/* ===========================================================
   BUTTON
   =========================================================== */

.download-button {

    margin-top: 55px;

    background: var(--accent);

    color: white;

    padding: 18px 34px;

    border-radius: 100px;

    text-decoration: none;

    font-weight: 600;

    transition: .25s;

    box-shadow: var(--shadow);

}

.download-button:hover {

    background: var(--accent-hover);

    transform: translateY(-2px);

}

.download-button span {

    display: block;

    font-size: 13px;

    opacity: .75;

    margin-top: 4px;

}

.download-button.disabled {

    pointer-events: none;

    opacity: .65;

}

/* ===========================================================
   SECTIONS
   =========================================================== */

section {

    padding: 120px 0;

}

section h2 {

    text-align: center;

    font-size: 48px;

    margin-bottom: 24px;

    letter-spacing: -.02em;

}

section>p {

    text-align: center;

    max-width: 760px;

    margin: auto;

    color: var(--secondary);

    font-size: 20px;

}

/* ===========================================================
   FEATURES
   =========================================================== */

.cards {

    margin-top: 70px;

    display: grid;

    gap: 28px;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

}

.card {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 36px;

    transition: .25s;

}

.card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}

.card h3 {

    font-size: 26px;

    margin-bottom: 18px;

}

.card p {

    color: var(--secondary);

}

/* ===========================================================
   SCREENSHOTS
   =========================================================== */

.gallery {

    margin-top: 70px;

    display: grid;

    gap: 35px;

}

.gallery img {

    width: 100%;

    border-radius: 18px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    transition: .3s;

}

.gallery img:hover {

    transform: scale(1.01);

}

/* ===========================================================
   PRIVACY
   =========================================================== */

.privacy {

    text-align: center;

}

.privacy p {

    margin-top: 22px;

}

/* ===========================================================
   SUPPORT
   =========================================================== */

.support {

    text-align: center;

}

.support a {

    display: inline-block;

    margin-top: 35px;

    background: var(--accent);

    color: white;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 999px;

    transition: .25s;

}

.support a:hover {

    background: var(--accent-hover);

}

/* ===========================================================
   FOOTER
   =========================================================== */

footer {

    margin-top: 120px;

    padding: 60px 20px;

    border-top: 1px solid var(--border);

    text-align: center;

}

footer p {

    color: var(--secondary);

}

footer nav {

    margin-top: 20px;

}

footer a {

    color: var(--accent);

    text-decoration: none;

    margin: 0 10px;

}

footer a:hover {

    text-decoration: underline;

}

/* ===========================================================
   MOBILE
   =========================================================== */

@media (max-width: 768px) {

    .hero {

        min-height: auto;

        padding-top: 90px;

        padding-bottom: 90px;

    }

    section {

        padding: 80px 0;

    }

    section h2 {

        font-size: 36px;

    }

    .description {

        font-size: 19px;

    }

}