@font-face {
    font-family: 'Cera Pro';
    src: url('fonts/CeraPro-Black.eot');
    src: local('Cera Pro Black'), local('CeraPro-Black'),
        url('fonts/CeraPro-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/CeraPro-Black.woff') format('woff'),
        url('fonts/CeraPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('fonts/CeraPro-Bold.eot');
    src: local('Cera Pro Bold'), local('CeraPro-Bold'),
        url('fonts/CeraPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/CeraPro-Bold.woff') format('woff'),
        url('fonts/CeraPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Helios';
    src: local('Helios Extra Black'), local('Helios-Extra-Black'),
        url('fonts/HeliosExtBlackC.woff2') format('woff2'),
        url('fonts/HeliosExtBlackC.woff') format('woff'),
        url('fonts/HeliosExtBlackC.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Helios';
    src: local('Helios Extra Regular'), local('Helios-Extra-Regular'),
        url('fonts/HeliosExtC.woff2') format('woff2'),
        url('fonts/HeliosExtC.woff') format('woff'),
        url('fonts/HeliosExtC.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --purple: #3e1984;
    --mint: #70e4c4;
    --mint-soft: #c6f4e7;
    --sky: #d5e6f7;
    --text: #1a1a1a;
    --muted: #466d8a;
    --white: #ffffff;
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    font-family: 'Helios', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--white);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--purple);
}

a:hover {
    color: #2bb894;
}

.site-wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(62, 25, 132, 0.08);
    backdrop-filter: blur(10px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
}

.logo {
    display: inline-block;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    color: var(--mint);
    line-height: 1;
}

.logo span {
    color: var(--purple);
}

.logo:hover {
    text-decoration: none;
    color: var(--mint);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
}

.site-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--purple);
}

.site-nav a:hover {
    color: #2bb894;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple);
    color: var(--white) !important;
    border-radius: 999px;
    padding: 8px 16px;
}

.nav-cta:hover {
    background: var(--mint);
    color: var(--text) !important;
}

.nav-cta-light {
    background: var(--white);
    color: var(--purple) !important;
}

.nav-cta-light:hover {
    background: var(--mint);
    color: var(--text) !important;
}

.hero {
    background: linear-gradient(180deg, var(--mint-soft) 0%, var(--sky) 100%);
    padding: 0;
    overflow: hidden;
}

.hero-stage {
    position: relative;
    min-height: clamp(420px, 56vw, 620px);
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    pointer-events: none;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0 64px;
}

.hero-copy {
    max-width: min(520px, 52%);
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--purple);
}

.hero .lead {
    margin: 0 0 28px;
    font-size: 20px;
    color: var(--muted);
    max-width: 34em;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.store-badge img {
    width: 150px;
    height: auto;
    display: block;
}


.section {
    padding: 72px 0;
}

.section-title {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 900;
    color: var(--purple);
}

.section-lead {
    margin: 0 0 36px;
    color: var(--muted);
    max-width: 40em;
}

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

.card {
    background: var(--white);
    border: 1px solid rgba(62, 25, 132, 0.08);
    border-radius: var(--radius);
    padding: 28px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 900;
    color: var(--purple);
}

.card p {
    margin: 0;
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step {
    background: var(--mint-soft);
    border-radius: var(--radius);
    padding: 28px;
}

.step-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 14px;
}

.step h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: var(--purple);
}

.step p {
    margin: 0;
    color: var(--text);
}

.why {
    background: #f7fbf9;
}

.download {
    background: var(--purple);
    color: var(--white);
    text-align: center;
}

.download .section-title,
.download .section-lead {
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}

.download .section-lead {
    opacity: 0.85;
}

.download .store-row {
    justify-content: center;
}

.site-footer {
    background: var(--sky);
    padding: 40px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: var(--purple);
}

.site-footer p,
.site-footer li {
    margin: 0 0 8px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-copy {
    border-top: 1px solid rgba(62, 25, 132, 0.12);
    padding-top: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
}

.page-main {
    background: linear-gradient(180deg, var(--mint-soft) 0%, var(--white) 180px);
    padding: 40px 0 64px;
}

.page-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px 48px;
    box-shadow: 0 12px 32px rgba(62, 25, 132, 0.06);
}

.page-card h1 {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 900;
    color: var(--purple);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.contact-card {
    background: var(--mint-soft);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-card h2 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--purple);
}

.contact-card p {
    margin: 0;
    color: var(--text);
}

.legal-langs {
    margin: 8px 0 28px;
    font-size: 15px;
}

.legal-langs a {
    margin-right: 16px;
    font-weight: 700;
}

.legal-meta {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.page-card h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--purple);
    margin-top: 28px;
    margin-bottom: 12px;
}

.page-card p,
.page-card li {
    font-size: 16px;
    line-height: 1.55;
    color: #222;
}

.page-card ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-card li {
    margin-bottom: 6px;
}

.page-card hr {
    border: 0;
    border-top: 1px solid var(--mint-soft);
    margin: 48px 0;
}

.legal-form {
    margin-top: 8px;
}

.legal-form label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--purple);
    margin-bottom: 6px;
}

.legal-form input[type="email"],
.legal-form input[type="text"],
.legal-form textarea {
    width: 100%;
    border: 2px solid var(--mint-soft);
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-family: 'Helios', sans-serif;
    background: var(--white);
    color: var(--text);
}

.legal-form textarea {
    min-height: 120px;
    resize: vertical;
}

.legal-form input:focus,
.legal-form textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.legal-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 20px;
}

.legal-check input {
    margin-top: 4px;
    flex-shrink: 0;
}

.legal-check label {
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0;
}

.legal-submit {
    border-radius: 40px;
    border: 0;
    background: var(--purple);
    color: var(--white);
    font-family: 'Helios', sans-serif;
    font-weight: 900;
    font-size: 18px;
    min-height: 52px;
    padding: 14px 28px;
    cursor: pointer;
}

.legal-submit:hover {
    background: var(--mint);
    color: var(--text);
}

.legal-form-status {
    margin-top: 16px;
    font-size: 15px;
    color: var(--purple);
}

@media (max-width: 900px) {
    .cards,
    .steps,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 0;
    }

    .hero-bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        min-height: 280px;
        object-fit: cover;
        object-position: center right;
        order: 2;
    }

    .hero-stage {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 1;
        padding: 36px 0 24px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero {
        padding: 0;
    }

    .page-card {
        padding: 24px 20px 32px;
        border-radius: 24px;
    }

    .page-card h1 {
        font-size: 24px;
    }

    .site-nav a:not(.nav-cta):not([href$="support.html"]) {
        display: none;
    }
}

.audio-sample {
    margin-top: 20px;
}

.audio-sample-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid var(--purple);
    background: transparent;
    color: var(--purple);
    border-radius: 999px;
    padding: 10px 20px;
    font-family: 'Helios', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.audio-sample-btn:hover {
    background: var(--mint);
    border-color: var(--mint);
    color: var(--text);
}

.audio-sample-btn.is-playing {
    background: var(--purple);
    color: var(--white);
}

.audio-sample-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.audio-sample-status {
    margin: 8px 0 0;
    min-height: 1.2em;
    font-size: 13px;
    color: var(--muted);
}
