@font-face {
    font-family: 'Geist';
    src: url('https://fonts.gstatic.com/s/geist/v1/geist__VF.woff2') format('woff2 supports variations'),
         url('https://fonts.gstatic.com/s/geist/v1/geist__VF.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Geist Mono';
    src: url('https://fonts.gstatic.com/s/geistmono/v1/geistmono__VF.woff2') format('woff2 supports variations'),
         url('https://fonts.gstatic.com/s/geistmono/v1/geistmono__VF.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #009aa4;
    --secondary: #282a31;
    --light: #fefefe;

    --background: #fefefe;
    --foreground: #282a31;

    --accent: #009aa4;
    --muted: #f5f5f6;
    --muted-foreground: #676163;
    --border: #e8e8ea;
    --card: #ffffff;
    --radius: 8px;
    --font-sans: "Geist", sans-serif;
    --font-mono: "Geist Mono", monospace;
}

body {
    font-family: var(--font-sans);
}

/* buttons */
.btn {
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary);
    border: 1px solid var(--border);
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    color: var(--light);
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    color: var(--primary);
    background-color: var(--light);
    border: 1px solid var(--primary);
}

.btn-secondary {
    color: var(--foreground);
    background-color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: var(--muted);
    border-color: var(--muted);
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .buttons {
        flex-wrap: wrap;
    }
}

/* badges */
.badge {
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    border-radius: 25px;
    background-color: var(--muted);
}

.badge svg {
    display: inline-block;
    width: 16px;
    margin-right: 6px;
}

.badge-primary {
    background-color: color-mix(in oklab, var(--primary) 5%, transparent);
    color: var(--primary);
    border-color: color-mix(in oklab, var(--primary) 20%, transparent);
}

/* section */
section {
    padding: 100px 0;
}

section.no-gap {
    padding: 0;
}

.section-header {
    max-width: 768px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.section-header h2,
.section-header p {
    text-align: center;
}

.section-header p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--muted-foreground);
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header p {
        font-size: 16px;
    }
}

/* containers */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1 {
    font-family: var(--font-sans);
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

h2 {
    font-family: var(--font-sans);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 24px;
}

.text-primary {
    color: var(--primary);
}


@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
        margin: 0 0 24px;
    }
}

/* header */
.header {
    background-color: color-mix(in oklab, var(--background) 60%, transparent);
    border-color: color-mix(in oklab, var(--border) 40%, transparent);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-logo {
    width: auto;
    height: 50px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;

}

.header-nav a {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.header-nav a:hover {
    color: var(--primary);
}

/* Burger menu */
.header-burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.header-burger span {
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-burger.active span:nth-child(2) {
    opacity: 0;
}

.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu styles */
@media (max-width: 767px) {
    .header-burger {
        display: flex;
    }

    .header-menu {
        position: fixed;
        top: 83px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        max-height: 0;
        overflow: hidden;
        background-color: var(--background);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 24px;
        gap: 24px;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 1000;
    }

    .header-menu.active {
        max-height: 100vh;
        padding: 24px;
    }

    .header-nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        width: 100%;
    }

    .header-nav a {
        width: 100%;
    }

    .header-menu .btn {
        width: 100%;
        text-align: center;
    }
}

/* Desktop menu styles */
@media (min-width: 768px) {
    .header-burger {
        display: none !important;
    }

    .header-menu {
        position: static;
        right: auto;
        width: auto;
        height: auto;
        background-color: transparent;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
    }
}

/* hero */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.hero h1 {
    margin: 0;
}

.hero p {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: var(--muted-foreground);
}

.hero-img {
    position: relative;
    height: 700px;
    width: 500px;
}

.hero-img img {
    height: 100%;
    object-fit: contain;
}

.hero-img img.one {
    position: absolute;
    left: 0;
    top: -50px;
}

.hero-img img.two {
    position: absolute;
    right: 0;
    bottom: -50px;
}

.hero-actions {
    margin-top: 16px;
}

/* Hero mobile styles */
@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
        overflow: hidden;
    }

    .hero-inner {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-content {
        order: 1;
        align-items: center;
        text-align: center;
    }

    .hero p {
        font-size: 18px;
    }    

    .hero-img {
        order: 2;
        height: 600px;
        width: 100%;
    }

    .hero-img img {
        width: 100%;
        object-fit: contain;
        display: block;
        height: 90%;
    }

    .hero-img img.one {
        top: 0;
        left: -40px;
    }

    .hero-img img.two {
        bottom: 0;
        right: -40px;
    }
}

/* features */
.features {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-item {
    padding: 32px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-icon {
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.feature-subtitle {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 12px;
    padding-left: 36px;
    position: relative;
}

.feature-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

@media (max-width: 768px) {
    .features {
        margin-top: 48px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-item {
        padding: 0 24px;
    }
}

/* cards */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cards--two {
    grid-template-columns: repeat(2, 1fr);
}

.cards--column {
    grid-template-columns: 1fr;
}

.card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

.card > .card-icon {
    margin-bottom: 24px;
}

.card--row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
}

.card-icon {
    background-color: color-mix(in oklab, var(--primary) 10%, transparent);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.card-icon svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.card-icon span {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.card-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-subtitle {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.card p {
    font-size: 16px;
    color: var(--muted-foreground);
}


@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        padding: 24px;
    }
}

/* security-privacy */
.security-privacy {
    background-color: hsl(210deg 16.67% 97.65%);
}

/* row */
.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* screen */
.screen {
    display: flex;
    justify-content: center;
    height: 800px;
}

@media (max-width: 768px) {
    .screen {
        height: 500px;
    }
}


/* accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    padding: 16px 24px;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
}

.accordion-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--muted-foreground);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    overflow: hidden;
}

.accordion-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--muted-foreground);
    margin: 0;
    padding-top: 16px;
}

/* faq */
.faq {
    background-color: hsl(210deg 16.67% 97.65%);
}

/* download */
.download {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.download .container {
    max-width: 768px;
}

.download h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.download p {
    margin: 0 0 40px;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
}

.download-footer {
    margin-top: 32px;
    font-size: 14px;
    text-align: center;
    color: rgba(255, 255, 255, .8);
}

@media (max-width: 768px) {
    .download h2 {
        font-size: 32px;
    }

    .download p {
        margin: 0 0 24px;
        font-size: 16px;
    }
}

/* footer */

.footer {
    background-color: var(--secondary);
    padding: 60px 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    column-gap: 48px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 16px;
}

.footer p {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: color-mix(in oklab, #fff 10%, transparent);
    border-radius: 50%;
    transition: .3s;
}

.footer-social a:hover {
    background-color: var(--primary);
}

.footer-social a svg {
    color: #fff;
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 16px;
    margin: 0 0 24px;
    font-weight: 700;
    color: #fff;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-menu a {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    transition: .3s;
}

.footer-menu a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        margin: 0 0 16px;
    }
}