:root {
    color-scheme: light;
    --page: #f6f8f4;
    --surface: #ffffff;
    --surface-raised: #ffffff;
    --surface-soft: #edf5eb;
    --green: #28ad28;
    --green-bright: #218f25;
    --green-soft: #def3dd;
    --orange: #f8953c;
    --blue: #4a91f7;
    --yellow: #f5cf42;
    --text: #172219;
    --muted: #627064;
    --border: #d7e2d5;
    --shadow: 0 28px 80px rgba(31, 74, 35, 0.16);
    --shell: min(1180px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 18% -10%, rgba(40, 173, 40, 0.11), transparent 35rem),
        radial-gradient(circle at 92% 22%, rgba(248, 149, 60, 0.05), transparent 28rem),
        var(--page);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: var(--green-bright);
    text-underline-offset: 0.2em;
}

a:hover {
    color: #176f1b;
}

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

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid #218f25;
    outline-offset: 4px;
    border-radius: 5px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--text);
    color: var(--page);
    transform: translateY(-150%);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(23, 34, 25, 0.16);
    background: rgba(89, 143, 45, 0.84);
    box-shadow: 0 8px 30px rgba(35, 59, 24, 0.18);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    backdrop-filter: blur(22px) saturate(145%);
}

.nav-shell {
    width: var(--shell);
    min-height: 72px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 750;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-decoration: none;
}

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

.brand img {
    border-radius: 9px;
    box-shadow: 0 7px 18px rgba(40, 173, 40, 0.25);
}

.site-header .brand img {
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.16),
        0 7px 18px rgba(23, 34, 25, 0.24);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: white;
}

.site-header .brand,
.site-header .brand:hover,
.site-header .menu-toggle {
    color: white;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--text);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.app-store-link {
    display: block;
    width: fit-content;
    border-radius: 8px;
    line-height: 0;
}

.app-store-link:hover {
    opacity: 0.88;
}

.app-store-link-nav,
.app-store-link-nav img {
    width: 120px;
    height: 40px;
}

.app-store-link-large,
.app-store-link-large img {
    width: 180px;
    height: 60px;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

h1 {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 620;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
}

h1 span,
h2 span {
    color: var(--green-bright);
    font-weight: 640;
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    font-weight: 730;
}

.hero {
    min-height: 770px;
    padding-block: 72px;
    display: grid;
    grid-template-columns: minmax(0, 610px) minmax(400px, 500px);
    align-items: center;
    gap: 64px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-lede {
    max-width: 590px;
    margin: 0 0 34px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-note {
    margin: 18px 0 0;
    color: #748176;
    font-size: 14px;
}

.privacy-section {
    padding-block: 36px 100px;
}

.privacy-card {
    padding: 58px 64px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 20%, rgba(40, 173, 40, 0.13), transparent 24rem),
        linear-gradient(145deg, #ffffff, #eff7ed);
    box-shadow: 0 16px 44px rgba(37, 76, 40, 0.1);
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1fr);
    align-items: center;
    gap: 72px;
}

.privacy-card h2 {
    margin-bottom: 0;
    font-size: clamp(2.7rem, 4.4vw, 4rem);
}

.privacy-copy > p {
    margin-top: 0;
    color: var(--muted);
}

.privacy-copy > p:first-child {
    color: var(--text);
    font-size: 18px;
}

.privacy-copy > p:last-of-type {
    margin-bottom: 0;
    font-size: 15px;
}

.button {
    min-height: 56px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 720;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 12px 32px rgba(40, 173, 40, 0.22);
}

.button-primary:hover {
    color: white;
    box-shadow: 0 16px 38px rgba(40, 173, 40, 0.3);
}

.button-secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
}

.button-secondary:hover {
    background: var(--surface-raised);
    color: var(--text);
}

.hero-visual {
    position: relative;
    min-height: 650px;
}

.hero-device {
    position: absolute;
    width: 350px;
    filter: drop-shadow(0 8px 10px rgba(23, 34, 25, 0.16));
}

.hero-device-back {
    top: 24px;
    right: 0;
    transform: rotate(5deg);
}

.hero-device-front {
    z-index: 2;
    bottom: -18px;
    left: 0;
    transform: rotate(-4deg);
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(45px);
    opacity: 0.24;
}

.glow-one {
    width: 350px;
    height: 350px;
    top: 70px;
    right: -50px;
    background: var(--green);
}

.glow-two {
    width: 260px;
    height: 260px;
    bottom: 20px;
    left: -20px;
    background: var(--orange);
    opacity: 0.1;
}

.daily-section,
.recipe-section {
    border-block: 1px solid var(--border);
    background: linear-gradient(145deg, #edf5eb, #f9fbf8);
}

.split-layout {
    min-height: 760px;
    padding-block: 90px;
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(440px, 1fr);
    align-items: center;
    gap: 100px;
}

.split-layout-reverse {
    grid-template-columns: minmax(440px, 1fr) minmax(380px, 0.9fr);
}

.section-copy > p:not(.eyebrow) {
    max-width: 590px;
    color: var(--muted);
    font-size: 18px;
}

.feature-note {
    padding-left: 18px;
    border-left: 3px solid var(--green);
    font-size: 15px !important;
}

.feature-showcase {
    position: relative;
    min-height: 620px;
}

.feature-showcase-single img {
    position: absolute;
    inset: 0;
    width: 320px;
    margin: auto;
    filter: drop-shadow(0 8px 10px rgba(23, 34, 25, 0.16));
}

.feature-showcase-pair img {
    position: absolute;
    width: 300px;
    filter: drop-shadow(0 8px 10px rgba(23, 34, 25, 0.16));
}

.feature-device-back {
    top: 12px;
    right: -10px;
    transform: rotate(5deg);
}

.feature-device-front {
    z-index: 2;
    bottom: -20px;
    left: 0;
    transform: rotate(-4deg);
}

.logging-section {
    padding-block: 120px;
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    align-items: end;
    gap: 80px;
    margin-bottom: 58px;
}

.section-heading-row h2 {
    margin-bottom: 0;
}

.section-heading-row > p {
    margin: 0 0 8px;
    color: var(--muted);
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card-grid article {
    padding: 18px 18px 26px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(160deg, #ffffff, #f5f9f3);
    box-shadow: 0 16px 44px rgba(37, 76, 40, 0.1);
}

.feature-card-grid article h3,
.feature-card-grid article p {
    margin-inline: 8px;
}

.feature-card-grid article p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.card-image {
    height: 450px;
    margin-bottom: 28px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 36%, rgba(40, 173, 40, 0.16), transparent 56%),
        #edf5eb;
}

.card-image img {
    width: 245px;
    max-width: none;
    align-self: flex-start;
    margin-top: 22px;
    filter: drop-shadow(0 7px 9px rgba(23, 34, 25, 0.14));
}

.circle-section {
    padding-block: 120px;
}

.circle-card {
    min-height: 650px;
    padding: 72px 80px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 20%, rgba(40, 173, 40, 0.14), transparent 28rem),
        linear-gradient(145deg, #ffffff, #eff7ed);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

.circle-copy p:not(.eyebrow) {
    max-width: 570px;
    color: var(--muted);
    font-size: 18px;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    margin-top: 14px;
    font-weight: 700;
    text-decoration: none;
}

.circle-image {
    align-self: end;
    margin-bottom: -150px;
}

.circle-image img {
    width: 330px;
    filter: drop-shadow(0 8px 10px rgba(23, 34, 25, 0.16));
}

.screens-section {
    padding-block: 120px;
}

.screens-card {
    padding-block: 72px 58px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 12%, rgba(40, 173, 40, 0.14), transparent 30rem),
        linear-gradient(145deg, #ffffff, #eff7ed);
    overflow: hidden;
}

.screens-card .section-heading-row {
    padding-inline: 80px;
}

.screenshot-row {
    margin-inline: 0;
    padding: 0 96px 12px;
    display: flex;
    gap: 42px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--border) transparent;
    scrollbar-width: thin;
}

.screenshot-row figure {
    flex: 0 0 250px;
    margin: 0;
    scroll-snap-align: start;
}

.screenshot-row img {
    width: 250px;
    filter: drop-shadow(0 7px 9px rgba(23, 34, 25, 0.14));
}

.screenshot-row figcaption {
    padding-bottom: 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    text-align: center;
}

.final-cta {
    padding-block: 130px;
    text-align: center;
}

.final-cta > img {
    margin: 0 auto 30px;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(40, 173, 40, 0.24);
}

.final-cta h2 {
    margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
    max-width: 590px;
    margin: 0 auto 28px;
    color: var(--muted);
}

.final-cta .app-store-link {
    margin-inline: auto;
}

.not-found-main {
    min-height: calc(100vh - 73px);
    padding-block: 96px;
    display: grid;
    place-items: center;
}

.not-found-card {
    max-width: 720px;
    padding: 64px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 10%, rgba(40, 173, 40, 0.14), transparent 24rem),
        var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.not-found-card img {
    margin: 0 auto 28px;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(40, 173, 40, 0.24);
}

.not-found-card h1 {
    margin-inline: auto;
}

.not-found-card p {
    max-width: 540px;
    margin: 0 auto 30px;
    color: var(--muted);
}

.support-link {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: 15px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #eaf1e8;
}

.footer-grid {
    padding-block: 64px 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
}

.footer-grid > div > p {
    max-width: 420px;
    margin: 18px 0 0;
    color: var(--muted);
}

.footer-grid nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-content: start;
    gap: 14px 36px;
}

.footer-grid nav a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

.footer-grid nav a:hover {
    color: var(--text);
}

.footer-legal {
    padding-block: 24px 36px;
    border-top: 1px solid rgba(41, 66, 45, 0.16);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 50px;
    color: #748077;
    font-size: 12px;
}

.footer-legal p {
    margin: 0;
}

.page-hero {
    padding-block: 100px 62px;
}

.page-hero h1 {
    margin-bottom: 20px;
}

.page-hero > p:not(.eyebrow):not(.document-meta) {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 19px;
}

.faq-layout {
    width: var(--shell);
    margin: 0 auto;
    padding-bottom: 110px;
    display: grid;
    grid-template-columns: 220px minmax(0, 780px);
    align-items: start;
    gap: 70px;
}

.faq-nav {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 6px;
}

.faq-nav a {
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.faq-nav a:hover {
    background: var(--surface-raised);
    color: var(--text);
}

.faq-group {
    grid-column: 2;
    padding: 64px 0 26px;
    border-top: 1px solid var(--border);
}

.faq-group:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.faq-group h2 {
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

details {
    border-top: 1px solid var(--border);
}

details:last-of-type {
    border-bottom: 1px solid var(--border);
}

summary {
    position: relative;
    padding: 22px 48px 22px 0;
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    top: 17px;
    right: 8px;
    color: var(--green-bright);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transition: transform 180ms ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

.answer {
    max-width: 700px;
    padding: 0 40px 22px 0;
    color: var(--muted);
}

.answer p:first-child {
    margin-top: 0;
}

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

.faq-support {
    grid-column: 2;
    margin-top: 50px;
    padding: 44px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #eef6ec);
}

.faq-support h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.faq-support > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--muted);
}

.document-layout {
    width: min(780px, calc(100% - 48px));
    margin: 0 auto;
    padding-bottom: 110px;
}

.document-layout h2 {
    margin-top: 2.15em;
    margin-bottom: 0.7em;
    font-size: clamp(1.55rem, 3vw, 2rem);
    letter-spacing: -0.025em;
}

.document-layout p,
.document-layout li {
    color: #4f5d51;
}

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

.document-meta {
    margin: 0;
    color: #748176 !important;
    font-size: 14px;
}

.callout {
    margin: 30px 0 44px;
    padding: 22px 24px;
    border: 1px solid rgba(110, 229, 111, 0.28);
    border-radius: 18px;
    background: rgba(40, 173, 40, 0.08);
}

.callout p {
    margin: 0;
}

.document-contact {
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.privacy-hero {
    padding-bottom: 26px;
}

.privacy-hero .document-meta {
    margin-bottom: 22px;
}

.language-switcher {
    display: flex;
    gap: 8px;
    margin-top: 26px;
}

.language-switcher button {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
    border-color: var(--green);
    background: var(--green);
    color: white;
}

.privacy-page [lang="pl"] {
    display: none;
}

.privacy-page.polish [lang="en"] {
    display: none;
}

.privacy-page.polish [lang="pl"] {
    display: block;
}

.privacy-page.polish li[lang="pl"] {
    display: list-item;
}

@media (max-width: 1040px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 34px;
    }

    .hero-visual {
        min-height: 600px;
    }

    .hero-device {
        width: 315px;
    }

    .split-layout,
    .split-layout-reverse {
        grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
        gap: 56px;
    }

    .feature-showcase-pair img {
        width: 270px;
    }

    .circle-card {
        padding: 64px 54px;
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 52px;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100% - 36px, 680px);
    }

    .site-header {
        background: rgba(106, 154, 66, 0.94);
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 72px 0 auto;
        max-height: calc(100vh - 72px);
        padding: 18px;
        border-bottom: 1px solid var(--border);
        background: rgba(247, 250, 245, 0.98);
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        overflow-y: auto;
    }

    .menu-toggle[aria-expanded="true"] + .site-nav {
        display: flex;
    }

    .site-nav a {
        color: var(--muted);
        padding: 13px 12px;
        border-radius: 10px;
        font-size: 17px;
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] {
        background: var(--surface-raised);
        color: var(--text);
    }

    .site-nav .app-store-link-nav {
        padding: 0;
    }

    .app-store-link-nav {
        margin-top: 10px;
        margin-left: 12px;
    }

    .hero {
        min-height: auto;
        padding-block: 70px 24px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-copy {
        max-width: 660px;
    }

    .hero-visual {
        width: min(100%, 520px);
        min-height: 650px;
        margin: 0 auto;
    }

    .hero-device {
        width: 340px;
    }

    .split-layout,
    .split-layout-reverse {
        min-height: auto;
        padding-block: 82px;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .split-layout-reverse .section-copy {
        order: 1;
    }

    .split-layout-reverse .feature-showcase {
        order: 2;
    }

    .feature-showcase {
        width: min(100%, 500px);
        min-height: 620px;
        margin-inline: auto;
    }

    .logging-section,
    .circle-section,
    .screens-section {
        padding-block: 88px;
    }

    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-grid article {
        display: grid;
        grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1fr);
        column-gap: 24px;
        align-items: center;
    }

    .feature-card-grid article h3,
    .feature-card-grid article p {
        grid-column: 2;
        margin-inline: 0;
    }

    .feature-card-grid article h3 {
        align-self: end;
    }

    .feature-card-grid article p {
        align-self: start;
    }

    .card-image {
        grid-column: 1;
        grid-row: 1 / span 2;
        height: 390px;
        margin-bottom: 0;
    }

    .card-image img {
        width: 215px;
    }

    .circle-card {
        min-height: 700px;
        padding: 56px 44px 0;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .circle-image {
        width: 310px;
        margin: 0 auto -100px;
    }

    .footer-legal {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-layout {
        display: block;
    }

    .faq-nav {
        position: static;
        margin-bottom: 50px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-group {
        padding-top: 58px;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 28px);
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    h2 {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .nav-shell {
        min-height: 66px;
    }

    .site-nav {
        inset-block-start: 66px;
        max-height: calc(100vh - 66px);
    }

    .hero {
        padding-top: 56px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .app-store-link-large,
    .hero-actions .button {
        width: 100%;
    }

    .app-store-link-large img {
        margin-inline: auto;
    }

    .not-found-card {
        padding: 44px 24px;
    }

    .privacy-section {
        padding-block: 24px 68px;
    }

    .privacy-card {
        padding: 38px 28px;
        border-radius: 26px;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .privacy-card h2 {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-device {
        width: min(70vw, 300px);
    }

    .hero-device-back {
        right: -8px;
    }

    .hero-device-front {
        left: -8px;
    }

    .split-layout,
    .split-layout-reverse {
        padding-block: 68px;
    }

    .feature-showcase {
        min-height: 510px;
    }

    .feature-showcase-single img {
        width: min(72vw, 280px);
    }

    .feature-showcase-pair img {
        width: min(64vw, 245px);
    }

    .feature-card-grid article {
        display: block;
    }

    .feature-card-grid article h3,
    .feature-card-grid article p {
        margin-inline: 8px;
    }

    .card-image {
        height: 410px;
        margin-bottom: 28px;
    }

    .card-image img {
        width: 225px;
    }

    .circle-card {
        min-height: 650px;
        padding: 44px 24px 0;
        border-radius: 26px;
    }

    .circle-image {
        width: 260px;
    }

    .screenshot-row {
        margin-inline: 0;
        padding-inline: 32px;
        gap: 28px;
    }

    .screens-card {
        padding-block: 44px 36px;
        border-radius: 26px;
    }

    .screens-card .section-heading-row {
        padding-inline: 24px;
    }

    .screenshot-row figure,
    .screenshot-row img {
        width: 220px;
        flex-basis: 220px;
    }

    .final-cta {
        padding-block: 90px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .page-hero {
        padding-block: 72px 46px;
    }

    .faq-nav {
        grid-template-columns: 1fr;
    }

    .faq-support {
        padding: 32px 24px;
    }

    .document-layout {
        width: calc(100% - 28px);
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
