:root {
    color-scheme: dark;
    --bg: #03100c;
    --bg-2: #061a12;
    --panel: rgba(9, 30, 21, 0.72);
    --panel-strong: rgba(11, 41, 27, 0.88);
    --line: rgba(113, 223, 151, 0.18);
    --text: #f5fbf7;
    --muted: #b7c5bd;
    --green: #59e58a;
    --green-2: #1bbf70;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.2rem;
}

body {
    margin: 0;
    padding-top: 5.05rem;
    min-height: 100vh;
    background:
            radial-gradient(circle at 18% 10%, rgba(43, 209, 117, 0.25), transparent 28rem),
            radial-gradient(circle at 78% 18%, rgba(43, 209, 117, 0.16), transparent 32rem),
            linear-gradient(180deg, #061811 0%, var(--bg) 45%, #010805 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(180deg, black, transparent 75%);
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem clamp(1rem, 4vw, 4rem);
    border-bottom: 1px solid var(--line);
    background: rgba(3, 16, 12, 0.84);
    backdrop-filter: blur(18px);
    transition: padding 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    background: rgba(3, 16, 12, 0.94);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 900;
    text-decoration: none;
}

.brand span span {
    color: var(--green);
}

.brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.7rem 1.6rem rgba(0, 0, 0, 0.22);
    object-fit: cover;
}

.section-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    color: var(--muted);
    overflow-x: auto;
    white-space: nowrap;
    font-size: clamp(0.74rem, 1.45vw, 0.95rem);
    scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
    display: none;
}

.section-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.42rem 0.78rem;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
    -webkit-tap-highlight-color: transparent;
}

.section-nav a.active {
    border-color: rgba(89, 229, 138, 0.32);
    background: rgba(89, 229, 138, 0.1);
    color: var(--green);
}

.section-nav a:focus,
.section-nav a:focus-visible,
.section-nav a:active {
    outline: none;
}

@media (hover: hover) {
    .section-nav a:hover {
        border-color: rgba(89, 229, 138, 0.32);
        background: rgba(89, 229, 138, 0.1);
        color: var(--green);
    }
}

.hero,
.section,
.showcase,
.faq-section,
.privacy-section {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 4.2rem);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(89, 229, 138, 0.2);
    border-radius: 2rem;
    background: var(--panel-strong);
    box-shadow: 0 2.4rem 7rem rgba(0, 0, 0, 0.42);
}

.hero-panel picture,
.hero-panel img,
.showcase picture,
.showcase img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin: 0.85rem 0 0.35rem;
}

.button {
    display: inline-flex;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 1.15rem;
    font-size: 0.94rem;
    font-weight: 820;
    text-decoration: none;
}

.button.secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
}

.play-badge {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.google-play-badge {
    display: block;
    width: 11.4rem;
    max-width: 100%;
    height: auto;
}

.trust-note {
    position: absolute;
    right: clamp(0.7rem, 2vw, 1.1rem);
    bottom: clamp(0.7rem, 2vw, 1.1rem);
    max-width: min(24rem, calc(100% - 1.4rem));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(2, 11, 8, 0.7);
    color: rgba(245, 251, 247, 0.78);
    padding: 0.45rem 0.7rem;
    font-size: clamp(0.64rem, 1.4vw, 0.78rem);
    line-height: 1.25;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.section {
    padding: clamp(2rem, 4vw, 3.4rem) 0;
}

.section-heading {
    max-width: 47rem;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--green);
    font-size: 0.96rem;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 4.6vw, 4.4rem);
    line-height: 1.02;
}

h2 strong {
    color: var(--green);
}

p {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.8vw, 1.28rem);
    line-height: 1.55;
}

.privacy-copy {
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(14, 46, 32, 0.82), rgba(5, 19, 13, 0.86));
    padding: 1.25rem;
}

.privacy-copy p {
    margin-bottom: 0;
    font-size: 1rem;
}

.showcase {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
    gap: clamp(1.4rem, 4vw, 4rem);
    align-items: center;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.showcase.alternate {
    grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
}

.showcase.alternate .showcase-copy {
    order: 2;
}

.showcase.alternate img {
    order: 1;
}

.showcase-copy {
    position: sticky;
    top: 6rem;
}

.showcase picture {
    border: 1px solid rgba(89, 229, 138, 0.18);
    border-radius: 1.6rem;
    box-shadow: 0 2.2rem 6rem rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.showcase img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.privacy-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.2rem;
    padding: clamp(1.8rem, 4vw, 3rem) 0;
    opacity: 0.82;
}

.privacy-section h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.privacy-copy a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--green);
    font-weight: 850;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(2.2rem, 5vw, 4rem) 0;
}

.faq-grid {
    display: grid;
    gap: 0.75rem;
}

.faq-grid details {
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(14, 46, 32, 0.82), rgba(5, 19, 13, 0.86));
    padding: 1rem 1.1rem;
}

.faq-grid summary {
    color: var(--text);
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 850;
}

.faq-grid p {
    margin: 0.75rem 0 0;
    font-size: 0.98rem;
}

.community-section {
    display: flex;
    width: min(1160px, calc(100% - 2rem));
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin: clamp(0.5rem, 2vw, 1.5rem) auto 0;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(14, 46, 32, 0.72), rgba(5, 19, 13, 0.78));
    padding: clamp(1rem, 2.4vw, 1.4rem);
}

.community-copy h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.community-copy p {
    margin-bottom: 0;
    font-size: 1rem;
}

.community-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.social-button {
    display: inline-flex;
    min-height: 2.9rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0 1rem;
    font-weight: 850;
    text-decoration: none;
}

.social-button-primary {
    border-color: rgba(89, 229, 138, 0.45);
    background: linear-gradient(145deg, rgba(89, 229, 138, 0.18), rgba(18, 75, 45, 0.72));
    color: #f7fff9;
}

.social-button img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
}

footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.6rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 1.5rem clamp(1rem, 4vw, 4rem);
    color: var(--muted);
}

.footer-brand,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    align-items: center;
}

footer strong {
    color: var(--text);
}

.footer-links a {
    color: var(--green);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--green);
}

.legal-page {
    padding-top: 5.05rem;
}

.legal-site-header {
    justify-content: space-between;
}

.legal-nav {
    min-width: auto;
}

.legal-shell {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3.5rem) 0 4rem;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--green);
    padding: 0.55rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 850;
    text-decoration: none;
}

.legal-document {
    overflow-wrap: anywhere;
    border: 1px solid var(--line);
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(14, 46, 32, 0.82), rgba(5, 19, 13, 0.9));
    box-shadow: 0 2.2rem 6rem rgba(0, 0, 0, 0.32);
    padding: clamp(1.25rem, 4vw, 2.5rem);
}

.legal-document h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.05;
}

.legal-document h2 {
    margin: 2.2rem 0 0.8rem;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    line-height: 1.18;
}

.legal-document h3 {
    margin: 1.5rem 0 0.55rem;
    color: var(--text);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.legal-document p,
.legal-document li {
    color: var(--muted);
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.72;
}

.legal-document p {
    margin-bottom: 1rem;
}

.legal-document ul {
    margin: 0 0 1.2rem;
    padding-left: 1.35rem;
}

.legal-document li + li {
    margin-top: 0.35rem;
}

.legal-document strong {
    color: var(--text);
}

.legal-document a {
    color: var(--green);
    font-weight: 760;
}

.legal-document hr {
    margin: 1.6rem 0;
    border: 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    body {
        background: linear-gradient(180deg, #061811 0%, var(--bg) 45%, #010805 100%);
        padding-top: 3.75rem;
    }

    body::before {
        opacity: 0.35;
    }

    .site-header {
        align-items: center;
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: auto;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .site-header .brand {
        display: none;
    }

    .legal-site-header .brand {
        display: inline-flex;
    }

    .site-header.is-scrolled .brand {
        display: none;
    }

    .legal-site-header.is-scrolled .brand {
        display: inline-flex;
    }

    .section-nav {
        width: max-content;
        min-width: 100%;
        justify-content: flex-start;
        font-size: clamp(0.68rem, 2.5vw, 0.86rem);
    }

    .legal-nav {
        min-width: auto;
        width: auto;
    }

    .section-nav a {
        flex: 0 0 auto;
        min-width: auto;
        text-align: center;
    }

    .showcase,
    .showcase.alternate,
    .faq-section,
    .privacy-section {
        grid-template-columns: 1fr;
    }

    .community-section {
        align-items: flex-start;
        flex-direction: column;
    }

    .community-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .showcase-copy {
        position: static;
    }

    .showcase.alternate .showcase-copy,
    .showcase.alternate img {
        order: initial;
    }
}

@media (hover: none), (pointer: coarse), (max-width: 1024px) {
    body {
        background: linear-gradient(180deg, #061811 0%, var(--bg) 45%, #010805 100%);
    }
}

@media (max-width: 560px) {
    .section-nav {
        width: max-content;
        justify-content: flex-start;
        gap: 0.18rem;
        font-size: clamp(0.66rem, 2.55vw, 0.78rem);
    }

    .section-nav a {
        padding: 0.36rem clamp(0.34rem, 1.7vw, 0.5rem);
    }

    .hero,
    .section,
    .showcase,
    .faq-section,
    .privacy-section,
    .community-section {
        width: min(100% - 1rem, 1160px);
    }

    .hero-panel,
    .showcase picture {
        border-radius: 1.1rem;
    }

    .hero-actions {
        display: grid;
        justify-items: center;
    }

    .button {
        width: 100%;
    }

    .play-badge {
        width: 100%;
    }

    .google-play-badge {
        margin: 0 auto;
    }

    footer {
        justify-content: center;
        text-align: center;
    }

    .legal-page {
        padding-top: 4.45rem;
    }

    .legal-site-header {
        gap: 0.85rem;
    }

    .legal-site-header .brand {
        font-size: 1rem;
    }

    .legal-site-header .brand-mark {
        width: 2rem;
        height: 2rem;
    }

    .community-actions,
    .social-button {
        width: 100%;
    }
}
