* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #171717;
    background: #ffffff;
}

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    width: min(1120px, calc(100% - 48px));
    height: 76px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    color: #171717;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.language-select {
    padding: 8px 12px;

    font-size: 14px;
    color: #333333;

    background: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 8px;

    cursor: pointer;
}

@media (max-width: 600px) {
    .header-inner {
        width: calc(100% - 32px);
        height: 68px;
    }

    .brand {
        font-size: 22px;
    }

    .language-select {
        padding: 7px 9px;
        font-size: 13px;
    }
}

.app-switcher {
    width: 100%;
    background: #ffffff;
}

.app-switcher-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 32px;

    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.app-item {
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    font: inherit;

    background: transparent;
    border: 0;
}

button.app-item {
    cursor: pointer;
}

.app-icon-placeholder {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;

    color: #ffffff;
    background: transparent;

    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.app-icon-placeholder.muted {
    color: #888888;
    background: #eeeeee;
    box-shadow: none;
}

.app-label {
    font-size: 13px;
    color: #333333;
}

.coming-soon .app-label {
    color: #888888;
}

@media (max-width: 600px) {
    .app-switcher-inner {
        width: calc(100% - 32px);
        padding: 22px 0 28px;
        gap: 20px;
    }

    .app-icon-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        font-size: 18px;
    }

    .app-label {
        font-size: 12px;
    }
}

.app-icon-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.hero {
    width: 100%;
    background: #f1f4ed;
}

.hero-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 90px 0 96px;
}

.hero-eyebrow {
    margin: 0 0 18px;

    font-size: 16px;
    font-weight: 600;
    color: #66705c;
}

.hero-title {
    max-width: 720px;
    margin: 0;

    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    font-weight: 700;
}

.hero-description {
    max-width: 570px;
    margin: 28px 0 0;

    font-size: 19px;
    line-height: 1.65;
    color: #666666;
}

.download-button {
    display: inline-block;
    margin-top: 36px;
    padding: 14px 22px;

    color: #ffffff;
    background: #171717;

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    border-radius: 10px;
}

.download-button:hover {
    opacity: 0.86;
}

@media (max-width: 600px) {
    .hero-inner {
        width: min(1120px, calc(100% - 48px));
        margin: 0 auto;
        padding: 90px 0 96px;
    }

    .hero-title {
        font-size: 46px;
        letter-spacing: -1.8px;
    }

    .hero-description {
        margin-top: 22px;
        font-size: 17px;
    }

    .download-button {
        margin-top: 30px;
    }
}

.features {
    width: 100%;
    background: #ffffff;
}

.features-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 84px 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.feature-item {
    min-width: 0;
}

.feature-icon {
    margin-bottom: 22px;

    font-size: 34px;
    line-height: 1;
    color: #66705c;
}

.feature-item h2 {
    margin: 0 0 12px;

    font-size: 20px;
    font-weight: 700;
}

.feature-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.65;
    color: #6b6b6b;
}

@media (max-width: 800px) {
    .features-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
    }
}

@media (max-width: 520px) {
    .features-inner {
        width: calc(100% - 32px);
        padding: 72px 0;

        grid-template-columns: 1fr;
        gap: 44px;
    }
}

.pricing {
    width: 100%;
    background: #f7f7f7;
}

.pricing-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 84px 0;
}

.pricing-heading {
    max-width: 620px;
}

.pricing-eyebrow {
    margin: 0 0 14px;

    font-size: 15px;
    font-weight: 600;
    color: #66705c;
}

.pricing-heading h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.pricing-heading>p:last-child {
    margin: 18px 0 0;

    font-size: 16px;
    line-height: 1.65;
    color: #6b6b6b;
}

.pricing-grid {
    margin-top: 52px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-item {
    position: relative;

    padding: 30px;

    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
}

.price-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 10px;

    font-size: 12px;
    font-weight: 600;

    color: #ffffff;
    background: #66705c;

    border-radius: 999px;
}

.price-item h3 {
    margin: 0 0 18px;

    font-size: 18px;
}

.price {
    margin: 0;

    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}

.price-note {
    margin: 10px 0 0;

    font-size: 14px;
    color: #777777;
}

@media (max-width: 760px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .pricing-inner {
        width: calc(100% - 32px);
        padding: 72px 0;
    }

    .pricing-heading h2 {
        font-size: 32px;
    }

    .price-item {
        padding: 24px;
    }
}

.download-section {
    width: 100%;
    background: #ffffff;
}

.download-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 76px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.download-eyebrow {
    margin: 0 0 12px;

    font-size: 15px;
    font-weight: 600;
    color: #66705c;
}

.download-inner h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1.2px;
}

.download-inner p {
    margin: 16px 0 0;

    font-size: 16px;
    line-height: 1.6;
    color: #6b6b6b;
}

@media (max-width: 700px) {
    .download-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .download-inner {
        width: calc(100% - 32px);
        padding: 72px 0;
    }

    .download-inner h2 {
        font-size: 32px;
    }
}

.site-footer {
    width: 100%;
    background: #171717;
    color: #ffffff;
}

.footer-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 32px;
}

.footer-brand strong {
    font-size: 24px;
}

.footer-brand p {
    margin: 10px 0 0;
    color: #aaaaaa;
    font-size: 14px;
}

.footer-links {
    margin-top: 48px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h3 {
    margin: 0 0 16px;

    font-size: 14px;
    color: #ffffff;
}

.footer-links a {
    display: block;
    margin-top: 10px;

    color: #aaaaaa;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-company-info {
    margin-top: 52px;
    padding-top: 28px;

    border-top: 1px solid #333333;
}

.footer-company-info p {
    margin: 7px 0;

    font-size: 13px;
    color: #888888;
}

.footer-bottom {
    margin-top: 32px;
}

.footer-bottom p {
    margin: 0;

    font-size: 12px;
    color: #777777;
}

@media (max-width: 700px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 520px) {
    .footer-inner {
        width: calc(100% - 32px);
        padding: 56px 0 28px;
    }
}

.footer-email {
    color: #aaaaaa;
    text-decoration: none;
}

.footer-email:hover {
    color: #ffffff;
    text-decoration: underline;
}

.subpage {
    width: 100%;
    min-height: 600px;
    background: #f6f7f4;
}

.subpage-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 100px 0 120px;
}

.subpage-eyebrow {
    margin: 0 0 14px;

    font-size: 15px;
    font-weight: 600;
    color: #66705c;
}

.subpage-inner h1 {
    margin: 0;

    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -1.8px;
}

.subpage-description {
    max-width: 560px;
    margin: 22px 0 0;

    font-size: 18px;
    line-height: 1.65;
    color: #666666;
}

@media (max-width: 520px) {
    .subpage-inner {
        width: calc(100% - 32px);
        padding: 72px 0 90px;
    }

    .subpage-inner h1 {
        font-size: 40px;
    }

    .subpage-description {
        font-size: 16px;
    }
}

.support-email-line {
    margin: 36px 0 0;

    font-size: 15px;
    line-height: 1.6;
}

.support-email-line span {
    margin-right: 12px;
    color: #777777;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);
    color: #222222;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ffffff;
}

@media (max-width: 520px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;

        width: 40px;
        height: 40px;
    }
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    display: block;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-brand-link {
    display: inline-block;

    color: inherit;
    text-decoration: none;

    font-weight: 700;
}

.footer-brand-link:hover {
    opacity: 0.7;
}

/* Notices */

.notice-list {
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.notice-item {
    border-bottom: 1px solid #e5e5e5;
}

.notice-header {
    width: 100%;
    padding: 20px 4px;

    display: grid;
    grid-template-columns: 100px 1fr 24px;
    align-items: center;
    gap: 16px;

    border: 0;
    background: transparent;

    color: inherit;
    text-align: left;
    font: inherit;

    cursor: pointer;
}

.notice-date {
    color: #888888;
    font-size: 14px;
}

.notice-title {
    font-size: 16px;
    font-weight: 500;
}

.notice-toggle {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
}

.notice-content {
    display: none;

    padding: 0 40px 24px 120px;

    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

.notice-item.open .notice-content {
    display: block;
}

.notice-header:hover .notice-title {
    opacity: 0.65;
}

@media (max-width: 600px) {
    .notice-header {
        grid-template-columns: 76px 1fr 20px;
        gap: 10px;
        padding: 18px 2px;
    }

    .notice-date {
        font-size: 13px;
    }

    .notice-title {
        font-size: 15px;
    }

    .notice-content {
        padding: 0 28px 22px 88px;
    }
}

/* App page transition */

main {
    width: 100%;
    overflow: hidden;
}

.app-page {
    display: none;
    width: 100%;
}

.app-page.active {
    display: block;

    animation: app-page-enter 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes app-page-enter {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.coming-soon-screen {
    min-height: 640px;

    display: flex;
    align-items: center;

    background: #f7f7f7;
}

.coming-soon-screen-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 132px 0 140px;
}

.coming-soon-eyebrow {
    margin: 0 0 18px;

    font-size: 15px;
    font-weight: 600;
    color: #66705c;
}

.coming-soon-screen h1 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(52px, 6vw, 78px);
    line-height: 1.04;
    letter-spacing: -2.4px;
    font-weight: 700;
}

.coming-soon-screen p:last-child {
    max-width: 520px;
    margin: 28px 0 0;

    font-size: 18px;
    line-height: 1.65;
    color: #666666;
}

@media (max-width: 520px) {
    .coming-soon-screen {
        min-height: 520px;
    }

    .coming-soon-screen-inner {
        width: calc(100% - 32px);
        padding: 96px 0 108px;
    }

    .coming-soon-screen h1 {
        font-size: 46px;
        letter-spacing: -1.8px;
    }

    .coming-soon-screen p:last-child {
        margin-top: 22px;
        font-size: 16px;
    }
}

.subpage-inner>p {
    max-width: 820px;
}

.subpage-inner>h2,
.subpage-inner>h3,
.subpage-inner>ul {
    max-width: 820px;
}

.app-item {
    opacity: 0.55;

    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.app-item.active {
    opacity: 1;
}

.app-item:not(.active):hover {
    opacity: 0.8;
}

.app-item:active {
    transform: scale(0.97);
}

/* App policy view */

.app-policy-view .site-header,
.app-policy-view .site-footer,
.app-policy-view .back-to-top {
    display: none !important;
}

.app-policy-view .subpage {
    min-height: 100vh;
    background: #ffffff;
}

.app-policy-view .subpage-inner {
    width: min(820px, calc(100% - 48px));
    padding: 56px 0 80px;
}

.app-policy-view .subpage-eyebrow {
    display: none;
}

.app-policy-language {
    display: none;
}

.app-policy-view .app-policy-language {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

@media (max-width: 520px) {
    .app-policy-view .subpage-inner {
        width: calc(100% - 32px);
        padding: 36px 0 60px;
    }

    .app-policy-view .app-policy-language {
        margin-bottom: 20px;
    }
}