@font-face {
    font-family: "Figtree";
    src: url("assets/fonts/Figtree-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Figtree";
    src: url("assets/fonts/Figtree-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
/* Add other style weights as needed */

body {
    background: var(--bg);
    color: var(--text);
    font-family:
        "Figtree",
        Segoe UI,
        Arial,
        sans-serif;
    /* ...rest of your body styles */
}

:root {
    --primary: #39ffe1; /* Accent Cyan */
    --bg: #161a23; /* Deep dark background */
    --bg-secondary: #191d29;
    --text: #f7f7f9;
    --text-secondary: #bfc9d4;
    --card: #23283a;
    --radius: 18px;
    --transition: 0.15s;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: var(--bg);
    color: var(--text);
    font-family:
        "Figtree",
        Segoe UI,
        Arial,
        sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 5vw 1rem 5vw;
}
.logo {
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--primary);
    letter-spacing: 1px;
    display: flow-root;
    align-items: center;
}
nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2.2rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color var(--transition);
}
nav a:hover {
    color: var(--primary);
}
main {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem 1.5rem;
}
.hero {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.13;
}
.hero p {
    font-size: 1.33rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
}
.divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #39ffe1, #47d6ec);
    border-radius: 7px;
    margin: 2.4rem auto 2.2rem auto;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
}
.feature-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2.2rem 1.7rem;
    width: 300px;
    box-shadow: 0 2px 16px #0002;
    text-align: left;
    margin-bottom: 1.1rem;
    border: 1px solid #242b3d;
    transition:
        box-shadow var(--transition),
        border-color var(--transition);
}
.section-bordered {
    border: 2px solid var(--primary);
    border-radius: 18px;
    padding: 2.5rem 1.2rem;
    box-shadow: 0 4px 24px #39ffe13a;
    margin: 3rem 0 2.5rem 0;
    background: var(--bg-secondary);
    transition:
        border 0.2s,
        box-shadow 0.2s;
}

/* Divider after the section */
.divider-out {
    width: 80%;
    height: 3px;
    margin: 2rem auto 2rem auto;
    background: linear-gradient(90deg, #39ffe1 50%, #47d6ec 100%);
    border-radius: 6px;
}

.feature-card:hover {
    box-shadow: 0 8px 28px #39ffe152;
    border-color: var(--primary);
}
.feature-card h3 {
    color: var(--primary);
    font-size: 1.24rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}
/*.screenshot-box {
    text-align: center;
    margin: 2.3rem auto 3.2rem auto;
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 1200px;
    box-shadow: 0 4px 18px #0003;
    border: 1px solid #23283a;
}*/
/*.screenshot-box img,*/
.screenshot-box video {
    max-width: 1200%;
    /*border-radius: 8px;*/
    filter: drop-shadow(0 4px 32px #39ffe133);
}
.section-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 3rem;
    margin-top: 3rem;
    letter-spacing: 0.5px;
}
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.8rem;
}
.benefit {
    flex: 1 1 260px;
    color: var(--text-secondary);
    font-size: 1.12rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}
.benefit span {
    color: var(--primary);
    font-size: 1.3rem;
    margin-right: 0.6rem;
}
footer {
    margin-top: 4rem;
    text-align: center;
    color: #51545b;
    padding-bottom: 3rem;
    font-size: 1.04rem;
}
.contact-form {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    max-width: 400px;
    margin: 2.5rem auto 0 auto;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 16px #0002;
}
.contact-form h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}
.contact-form label {
    display: block;
    margin-top: 1em;
    margin-bottom: 0.3em;
    color: var(--text-secondary);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #161a23;
    color: var(--text);
    border: 1px solid #2b303f;
    border-radius: 6px;
    padding: 0.7em;
    font-size: 1.07rem;
    margin-bottom: 0.3em;
}
.contact-form button {
    width: 100%;
    margin-top: 1em;
    background: var(--primary);
    color: var(--bg);
    padding: 0.7em 0;
    border: none;
    border-radius: 7px;
    font-weight: bold;
    font-size: 1.11rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #1112;
}
.contact-form button:hover {
    background: #2eecba;
}
@media (max-width: 800px) {
    .features,
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
    header {
        flex-direction: column;
        gap: 1.5rem;
    }
    main {
        padding: 1.3rem 0.8rem;
    }
}
