:root {
    --bg: #f4fbf6;
    --bg-strong: #0f2d1f;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --surface-dark: rgba(10, 39, 26, 0.76);
    --text: #163222;
    --muted: #54705f;
    --line: rgba(46, 108, 73, 0.16);
    --primary: #1ea463;
    --primary-dark: #13774a;
    --accent: #8ddb7a;
    --shadow: 0 30px 70px rgba(18, 63, 40, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(141, 219, 122, 0.38), transparent 34%),
        radial-gradient(circle at bottom right, rgba(30, 164, 99, 0.16), transparent 24%),
        var(--bg);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(30, 164, 99, 0.35);
    outline-offset: 3px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(244, 251, 246, 0.78);
    border-bottom: 1px solid rgba(46, 108, 73, 0.08);
}

.site-header.is-scrolled {
    box-shadow: 0 18px 45px rgba(18, 63, 40, 0.08);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.menu a {
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 500;
}

.menu a:hover,
.menu a:focus-visible,
.menu .lang-switch {
    color: var(--text);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    border-radius: 999px;
    background: rgba(30, 164, 99, 0.08);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: rgba(30, 164, 99, 0.1);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.hero {
    padding: 72px 0 28px;
}

.hero-grid,
.section-grid,
.contact-grid,
.cta-band-inner {
    display: grid;
    gap: 32px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: start;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(30, 164, 99, 0.1);
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-band h2,
.contact h2 {
    margin: 18px 0 18px;
    font-family: "Outfit", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 5vw, 5.4rem);
}

.hero-lead,
.section-heading p,
.section-copy p,
.cta-band p,
.contact p {
    font-size: 1.08rem;
    color: var(--muted);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 24px;
}

.store-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.store-btn:hover,
.store-btn:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible {
    transform: translateY(-2px);
}

.store-btn.primary,
.submit-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #167d4d);
    box-shadow: 0 18px 35px rgba(30, 164, 99, 0.24);
}

.store-btn.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(30, 164, 99, 0.18);
}

.icon-svg {
    width: 1.3rem;
    height: 1.3rem;
    flex: 0 0 auto;
}

.icon-store {
    width: 1.15rem;
    height: 1.15rem;
}

.hero-points,
.contact-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--text);
}

.hero-points li,
.contact-points li {
    position: relative;
    padding-left: 28px;
}

.hero-points li::before,
.contact-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 6px rgba(30, 164, 99, 0.14);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 42px;
}

.hero-art {
    position: absolute;
    inset: 26px 0 26px 18px;
    width: calc(100% - 18px);
    height: calc(100% - 52px);
    border-radius: 36px;
    object-fit: cover;
    object-position: center;
    opacity: 0.62;
    filter: saturate(1.05);
    box-shadow: none;
    z-index: 0;
}

.hero-card,
.trust-card,
.highlight-card,
.feature-card,
.audience-card,
.shot-card,
.contact-form-card,
.faq-item,
.cta-band-inner {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.promo-card {
    position: absolute;
    left: auto;
    right: 16px;
    bottom: 36px;
    padding: 24px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.84);
    border: 0;
    box-shadow: none;
    backdrop-filter: blur(16px);
    z-index: 3;
}

.promo-card p {
    margin: 0 0 22px;
    color: var(--text);
    font-weight: 500;
}

.promo-stats {
    display: grid;
    gap: 12px;
}

.promo-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(46, 108, 73, 0.12);
}

.promo-stats strong,
.trust-card strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.promo-stats span,
.trust-card p,
.highlight-card p,
.feature-card p,
.audience-card p,
.shot-card p,
.faq-item p,
.contact-status,
.privacy-link {
    color: var(--muted);
}

.trust {
    padding: 12px 0 20px;
}

.trust-grid,
.about-highlights,
.feature-grid,
.audience-grid,
.screenshot-grid {
    display: grid;
    gap: 22px;
}

.trust-grid,
.about-highlights,
.audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card,
.highlight-card,
.feature-card,
.audience-card,
.shot-card,
.contact-form-card {
    padding: 26px;
}

.trust-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section {
    padding: 72px 0;
}

.section-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    margin-bottom: 28px;
}

.visual-banner {
    margin-top: 26px;
}

.visual-banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.section h2,
.cta-band h2,
.contact h2 {
    font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.feature-grid,
.screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.shot-card {
    min-height: 100%;
}

.shot-card {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(30, 164, 99, 0.12);
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.feature-card h3,
.audience-card h3,
.shot-card h3,
.highlight-card h3 {
    margin: 0 0 12px;
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
}

.shot-card img {
    aspect-ratio: auto;
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    border-radius: 24px;
    margin-bottom: 20px;
    padding: 14px;
    background:
        radial-gradient(circle at top, rgba(141, 219, 122, 0.22), transparent 45%),
        linear-gradient(180deg, rgba(30, 164, 99, 0.08), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(46, 108, 73, 0.08);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    padding: 0 24px;
}

.faq-item summary {
    list-style: none;
    padding: 22px 36px 22px 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 18px;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0 0 22px;
}

.cta-band-inner,
.contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.cta-band-inner {
    align-items: center;
    padding: 34px;
}

.contact-grid {
    align-items: start;
}

.compact {
    margin: 0;
    justify-content: flex-end;
}

.contact-form-card form {
    display: grid;
    gap: 12px;
}

.contact-form-card label {
    font-size: 0.96rem;
    font-weight: 600;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(46, 108, 73, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
}

.contact-form-card textarea {
    resize: vertical;
}

.submit-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.contact-status {
    min-height: 24px;
    font-size: 0.95rem;
}

.contact-status.is-success {
    color: var(--primary-dark);
}

.contact-status.is-error {
    color: #b24040;
}

.privacy-link {
    display: inline-block;
    margin-top: 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer {
    padding: 28px 0 40px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 0.96rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.back-link {
    font-weight: 700;
}

.legal-page .hero {
    padding-bottom: 16px;
}

.legal-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

.legal-nav-card,
.legal-block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-section {
    padding-top: 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.legal-nav-card {
    position: sticky;
    top: 106px;
    padding: 22px;
}

.legal-nav {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.legal-nav a {
    color: var(--muted);
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
    color: var(--text);
    background: rgba(30, 164, 99, 0.08);
    transform: translateX(2px);
}

.legal-content {
    display: grid;
    gap: 20px;
}

.legal-block {
    padding: 28px;
}

.legal-block h2 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.legal-block p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 1.04rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-date {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 1080px) {
    .hero-grid,
    .section-grid,
    .cta-band-inner,
    .contact-grid,
    .trust-grid,
    .about-highlights,
    .audience-grid,
    .feature-grid,
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 560px;
        overflow: visible;
    }

    .promo-card {
        left: 0;
        right: auto;
        bottom: auto;
        max-width: 420px;
    }

    .hero-art {
        display: block;
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
    }

    .compact {
        justify-content: flex-start;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
    }

    .menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .menu.is-open {
        display: flex;
    }

    .hero {
        padding-top: 44px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-visual {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .hero-lead {
        max-width: 42ch;
    }

    .promo-card {
        position: relative;
        inset: auto;
        max-width: none;
        margin-bottom: 0;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .hero {
        padding: 28px 0 40px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.3rem, 10vw, 3.2rem);
        line-height: 1.06;
        margin-bottom: 14px;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 0;
        border-radius: 28px;
        overflow: visible;
    }

    .hero-art {
        display: block;
        border-radius: 24px;
    }

    .promo-card {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .promo-card p {
        margin-bottom: 16px;
        font-size: 1rem;
    }

    .promo-stats strong {
        font-size: 1.55rem;
    }

    .promo-stats span {
        font-size: 0.95rem;
    }

    .hero-points {
        gap: 8px;
    }

    .hero-points li {
        padding-left: 24px;
        font-size: 0.97rem;
    }

    .hero-card,
    .trust-card,
    .highlight-card,
    .feature-card,
    .audience-card,
    .shot-card,
    .contact-form-card,
    .faq-item,
    .cta-band-inner {
        border-radius: 22px;
    }

    .promo-stats div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .legal-block,
    .legal-nav-card {
        border-radius: 22px;
    }

    .cta-group,
    .compact {
        flex-direction: column;
    }

    .store-btn,
    .submit-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
