:root {
    color-scheme: light;
    --paper: #faf8f5;
    --paper-deep: #f3eee7;
    --white: #fff;
    --ink: #1c1917;
    --muted: #6f6a66;
    --line: #e8e2dc;
    --orange: #ff5b19;
    --orange-dark: #c83b08;
    --purple: #6428d8;
    --purple-soft: #f0e7ff;
    --shadow: 0 22px 60px rgb(47 34 23 / 9%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--orange-dark);
}

button,
summary {
    font: inherit;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 4px;
}

.container {
    width: min(1160px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    z-index: 20;
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.7rem 1rem;
    transform: translateY(-160%);
    border-radius: 0.7rem;
    color: var(--white);
    background: var(--ink);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    border-bottom: 1px solid rgb(28 25 23 / 6%);
    background: rgb(250 248 245 / 94%);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-decoration: none;
}

.brand:hover {
    color: var(--ink);
}

.brand img {
    width: 42px;
    height: 42px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.desktop-nav a,
.mobile-nav-panel a {
    color: var(--muted);
    font-size: 0.91rem;
    font-weight: 600;
    text-decoration: none;
}

.desktop-nav a:hover,
.mobile-nav-panel a:hover {
    color: var(--ink);
}

.mobile-nav {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ink);
    background: var(--orange);
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
    color: var(--ink);
    background: #ff7139;
    box-shadow: 0 8px 20px rgb(200 59 8 / 17%);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    color: var(--white);
    background: #39312d;
}

.button-outline {
    border-color: var(--line);
    background: var(--white);
}

.button-outline:hover {
    background: #fff8f2;
}

.button-small {
    min-height: 42px;
    padding: 0.6rem 1rem;
    font-size: 0.86rem;
}

.hero {
    padding: clamp(3rem, 7vw, 6.4rem) 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.1rem;
    color: var(--purple);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.hero h1 {
    max-width: 10ch;
    margin: 0;
    font-size: clamp(3.1rem, 6.4vw, 5.8rem);
    font-weight: 820;
    letter-spacing: -0.075em;
    line-height: 0.99;
}

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

.hero-copy {
    max-width: 37rem;
    margin: 1.5rem 0 1.8rem;
    color: var(--muted);
    font-size: clamp(1.06rem, 1.8vw, 1.23rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.hero-note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.hero-art {
    position: relative;
    isolation: isolate;
}

.hero-art::before {
    position: absolute;
    z-index: -1;
    inset: 8% 2% 2% 10%;
    border-radius: 40% 60% 54% 46%;
    background: linear-gradient(140deg, #eee3ff 4%, #fff0e7 87%);
    content: "";
    transform: rotate(-4deg);
}

.hero-art img {
    width: 100%;
    border: 1px solid rgb(95 66 34 / 7%);
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

.trust-band {
    padding: 1.4rem 0;
    border-block: 1px solid var(--line);
    background: rgb(255 255 255 / 54%);
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--muted);
    font-size: 0.91rem;
    font-weight: 620;
}

.trust-mark {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    border-radius: 14px;
    color: var(--purple);
    background: var(--purple-soft);
}

.trust-mark.orange {
    color: var(--orange-dark);
    background: #fff0e8;
}

.trust-mark svg,
.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.section {
    padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-soft {
    background: var(--paper-deep);
}

.section-heading {
    max-width: 44rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading h2,
.split-copy h2,
.privacy-promise h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.2vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.08;
}

.section-heading p,
.split-copy > p,
.privacy-promise p {
    margin: 1rem auto 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    min-height: 220px;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 1.35rem;
    background: var(--white);
}

.feature-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 1.2rem;
    place-items: center;
    border-radius: 15px;
    color: var(--orange-dark);
    background: #fff0e8;
}

.feature-card:nth-child(even) .feature-icon {
    color: var(--purple);
    background: var(--purple-soft);
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.07rem;
    letter-spacing: -0.025em;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.split-feature + .split-feature {
    margin-top: clamp(4.5rem, 9vw, 7.5rem);
}

.split-feature.reverse .split-copy {
    order: 2;
}

.split-feature.reverse .split-art {
    order: 1;
}

.split-copy .eyebrow {
    margin-bottom: 1rem;
}

.split-copy > p {
    max-width: 34rem;
    margin-left: 0;
}

.check-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 0;
    padding: 0;
    color: var(--muted);
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.check-list li::before {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 0.1rem;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: var(--purple-soft);
    content: "✓";
    font-size: 0.75rem;
    font-weight: 800;
}

.split-art {
    padding: clamp(1rem, 3vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

.split-art img {
    width: 100%;
    border-radius: 1.2rem;
}

.screen-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
}

.screen-card {
    margin: 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: var(--white);
    box-shadow: 0 12px 36px rgb(47 34 23 / 6%);
}

.screen-card img {
    width: 100%;
    overflow: hidden;
    border: 5px solid #211d24;
    border-radius: 1.15rem;
    background: var(--paper);
}

.screen-card figcaption {
    padding: 0.85rem 0.2rem 0.15rem;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
    text-align: center;
}

.privacy-promise {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    align-items: center;
    gap: 3rem;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid #e7dafb;
    border-radius: 2rem;
    background: linear-gradient(125deg, #fff 4%, #f3eaff 100%);
}

.privacy-promise p {
    margin-left: 0;
}

.privacy-promise-art {
    position: relative;
    padding: 1rem;
}

.privacy-promise-art img {
    width: min(100%, 320px);
    margin-inline: auto;
    mix-blend-mode: multiply;
}

.contact-band {
    padding: clamp(3rem, 7vw, 5rem) 0;
    color: var(--white);
    background: var(--ink);
}

.contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.contact-band h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.06em;
}

.contact-band p {
    max-width: 39rem;
    margin: 0.7rem 0 0;
    color: #c5beb8;
}

.site-footer {
    padding: 3.5rem 0 1.25rem;
    background: #f1ece6;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.footer-brand p {
    max-width: 18rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-column h2 {
    margin: 0 0 0.3rem;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
}

.footer-column p,
.footer-column a {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dfd8d1;
    color: var(--muted);
    font-size: 0.8rem;
}

.page-hero {
    padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

.page-hero h1 {
    max-width: 14ch;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 4.3rem);
    font-weight: 820;
    letter-spacing: -0.07em;
    line-height: 1.02;
}

.page-hero p {
    max-width: 45rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.legal-wrap {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
    padding: 1rem 0 6rem;
}

.legal-aside {
    position: sticky;
    top: 6.5rem;
    display: grid;
    gap: 0.5rem;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: var(--white);
}

.legal-aside strong {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
}

.legal-aside a {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
}

.legal-aside a:hover {
    color: var(--purple);
}

.legal-content {
    max-width: 760px;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: var(--white);
}

.legal-content > p:first-child {
    margin-top: 0;
    color: var(--muted);
}

.legal-content section + section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin: 0 0 0.65rem;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.25rem;
}

.legal-notice {
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--orange);
    border-radius: 0.5rem;
    color: #584a40;
    background: #fff3eb;
    font-size: 0.91rem;
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1.25rem;
    padding: 1rem 0 6rem;
}

.support-card {
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: var(--white);
}

.support-card h2 {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
    letter-spacing: -0.035em;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    color: var(--ink);
    background: var(--paper);
    font-weight: 650;
    text-decoration: none;
}

.contact-link:hover {
    border-color: #d6c6f6;
    color: var(--ink);
    background: #faf6ff;
}

.support-steps {
    display: grid;
    gap: 1rem;
}

.support-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.8rem;
}

.support-step-number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--purple);
    background: var(--purple-soft);
    font-size: 0.85rem;
    font-weight: 800;
}

.support-step h3 {
    margin: 0;
    font-size: 0.98rem;
}

.support-step p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
}

.not-found {
    padding: 6rem 0;
    text-align: center;
}

.not-found h1 {
    margin: 0;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: -0.07em;
}

.not-found p {
    color: var(--muted);
}

@media (max-width: 960px) {
    .desktop-nav {
        gap: 1rem;
    }

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

    .screen-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 650px;
        margin-inline: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 2rem, 560px);
    }

    .header-inner {
        min-height: 68px;
        gap: 0.7rem;
    }

    .desktop-nav,
    .header-action {
        display: none;
    }

    .brand {
        font-size: 1.04rem;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .mobile-nav {
        position: relative;
        display: block;
        margin-left: auto;
    }

    .mobile-nav summary {
        display: grid;
        width: 44px;
        height: 44px;
        align-content: center;
        justify-items: center;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--white);
        cursor: pointer;
        list-style: none;
    }

    .mobile-nav summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav summary span {
        width: 17px;
        height: 2px;
        border-radius: 2px;
        background: var(--ink);
    }

    .mobile-nav-panel {
        position: absolute;
        top: calc(100% + 0.65rem);
        right: 0;
        display: grid;
        width: min(82vw, 290px);
        gap: 0.2rem;
        padding: 0.65rem;
        border: 1px solid var(--line);
        border-radius: 1rem;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .mobile-nav-panel a {
        padding: 0.75rem;
        border-radius: 0.6rem;
    }

    .mobile-nav-panel a:hover {
        background: var(--paper);
    }

    .mobile-nav-panel .mobile-store-link {
        color: var(--ink);
        background: #fff0e8;
    }

    .hero {
        padding-top: 3.4rem;
    }

    .hero-grid,
    .split-feature,
    .privacy-promise,
    .support-grid,
    .legal-wrap {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-grid {
        gap: 2.6rem;
    }

    .hero h1 {
        max-width: 9ch;
        font-size: clamp(3.1rem, 15vw, 5rem);
    }

    .hero-art img {
        border-radius: 1.5rem;
    }

    .trust-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.9rem;
    }

    .trust-item {
        font-size: 0.88rem;
    }

    .section {
        padding-block: 4.2rem;
    }

    .section-heading {
        margin-bottom: 2rem;
        text-align: left;
    }

    .section-heading .eyebrow {
        justify-content: flex-start;
    }

    .section-heading h2,
    .split-copy h2,
    .privacy-promise h2 {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .section-heading p {
        margin-left: 0;
    }

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

    .feature-card {
        min-height: 0;
    }

    .split-feature + .split-feature {
        margin-top: 4.5rem;
    }

    .split-feature.reverse .split-copy,
    .split-feature.reverse .split-art {
        order: initial;
    }

    .split-art {
        padding: 0.8rem;
        border-radius: 1.4rem;
    }

    .split-art img {
        border-radius: 1rem;
    }

    .screen-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .screen-card {
        padding: 0.45rem;
        border-radius: 1rem;
    }

    .screen-card img {
        border-width: 3px;
        border-radius: 0.75rem;
    }

    .screen-card figcaption {
        font-size: 0.75rem;
    }

    .privacy-promise {
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 1.4rem;
    }

    .privacy-promise-art img {
        width: min(100%, 240px);
    }

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

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.7rem 1rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.3rem;
    }

    .legal-wrap {
        gap: 1rem;
        padding-bottom: 4rem;
    }

    .legal-aside {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem 1rem;
        padding: 0.9rem 1rem;
    }

    .legal-aside strong {
        width: 100%;
    }

    .legal-content {
        padding: 1.35rem;
    }

    .support-grid {
        padding-bottom: 4rem;
    }
}

@media (max-width: 390px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .screen-gallery {
        grid-template-columns: minmax(0, 1fr);
        max-width: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .legal-aside,
    .skip-link {
        display: none !important;
    }

    body,
    .legal-content {
        color: #000;
        background: #fff;
        box-shadow: none;
    }

    .legal-wrap {
        display: block;
    }
}
