:root {
    --cream: #fff8ee;
    --cream-deep: #f7eddf;
    --paper: #fffdf8;
    --ink: #181715;
    --muted: #635f58;
    --teal: #72a99a;
    --teal-deep: #467f72;
    --coral: #ee6a50;
    --coral-deep: #be4632;
    --butter: #f1c969;
    --line: rgba(24, 23, 21, 0.12);
    --soft-line: rgba(24, 23, 21, 0.07);
    --shadow-sm: 0 12px 32px rgba(64, 48, 30, 0.09);
    --shadow-lg: 0 28px 80px rgba(64, 48, 30, 0.16);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 44px;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    font-family: "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
    background:
        radial-gradient(circle at 8% 3%, rgba(241, 201, 105, 0.25), transparent 27rem),
        radial-gradient(circle at 92% 12%, rgba(114, 169, 154, 0.18), transparent 29rem),
        var(--cream);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.28;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

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

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--paper);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--ink);
}

main[tabindex="-1"]:focus {
    outline: 0;
    box-shadow: none;
}

[hidden] {
    display: none !important;
}

[data-copy-lang] {
    display: none;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    margin: -1px !important;
    white-space: nowrap !important;
}

:target {
    scroll-margin-block-start: 24px;
}

html[data-locale="en"] [data-copy-lang="en"],
html[data-locale="nl"] [data-copy-lang="nl"],
html[data-locale="zh-Hans"] [data-copy-lang="zh-Hans"] {
    display: inline;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

.site-wrap {
    width: min(var(--content), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 90px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow-sm);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding-inline: 4px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    content: "";
    background: var(--coral);
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
    color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.76);
    box-shadow: 0 8px 24px rgba(64, 48, 30, 0.06);
}

.locale-option {
    min-width: 44px;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.locale-option:hover {
    color: var(--ink);
    background: var(--cream-deep);
}

.locale-option.is-active {
    color: var(--paper);
    background: var(--ink);
}

.locale-panel {
    animation: locale-in 220ms ease both;
}

@keyframes locale-in {
    from {
        transform: translateY(5px);
    }
    to {
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    align-items: center;
    gap: clamp(40px, 7vw, 92px);
    min-height: 690px;
    padding: 62px clamp(28px, 5vw, 68px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow-lg);
}

.hero::before {
    position: absolute;
    top: -180px;
    left: 38%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    content: "";
    background: rgba(241, 201, 105, 0.24);
    filter: blur(1px);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    color: var(--coral-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    content: "";
    background: var(--coral);
    box-shadow: 0 0 0 6px rgba(238, 106, 80, 0.12);
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ink);
    font-weight: 800;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
}

h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(48px, 6.4vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.058em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4.7vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

p {
    color: var(--muted);
    line-height: 1.7;
}

.lead {
    max-width: 640px;
    margin: 0;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.62;
}

.hero-actions,
.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
    color: #fff;
    background: var(--ink);
    box-shadow: 0 14px 26px rgba(24, 23, 21, 0.18);
}

.button-primary:hover {
    background: #2d2b27;
    box-shadow: 0 18px 32px rgba(24, 23, 21, 0.22);
}

.button-secondary {
    border-color: var(--line);
    color: var(--ink);
    background: rgba(255, 253, 248, 0.76);
}

.button-secondary:hover {
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.apple-mark {
    width: 19px;
    height: 23px;
    fill: currentColor;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.trust-row li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.trust-row li::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: var(--teal);
}

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

.visual-field {
    position: absolute;
    inset: 24px 0 12px 48px;
    border-radius: 46% 54% 43% 57% / 58% 42% 58% 42%;
    background: var(--teal);
    transform: rotate(-3deg);
}

.visual-field::before,
.visual-field::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.visual-field::before {
    top: 42px;
    right: 28px;
    width: 90px;
    height: 90px;
    background: var(--butter);
}

.visual-field::after {
    bottom: 44px;
    left: 18px;
    width: 68px;
    height: 68px;
    background: var(--coral);
}

.phone-frame {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(310px, 70%);
    padding: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-radius: 45px;
    background: #0e0e0e;
    box-shadow: 0 36px 70px rgba(24, 23, 21, 0.28);
    transform: translateX(-50%) rotate(2deg);
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 37px;
    aspect-ratio: 1320 / 2868;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 185px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.92);
    box-shadow: 0 18px 42px rgba(64, 48, 30, 0.18);
    backdrop-filter: blur(12px);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    margin-top: 4px;
    font-size: 15px;
}

.floating-card small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.sound-card {
    top: 98px;
    left: -8px;
    transform: rotate(-4deg);
}

.smile-card {
    right: -18px;
    bottom: 60px;
    transform: rotate(3deg);
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 22px;
}

.sound-wave span {
    width: 4px;
    border-radius: 4px;
    background: var(--coral);
}

.sound-wave span:nth-child(1),
.sound-wave span:nth-child(5) { height: 8px; }
.sound-wave span:nth-child(2),
.sound-wave span:nth-child(4) { height: 16px; }
.sound-wave span:nth-child(3) { height: 22px; }

.smile-symbol {
    position: relative;
    width: 30px;
    height: 20px;
    border-bottom: 4px solid var(--teal-deep);
    border-radius: 0 0 24px 24px;
}

.section {
    padding-block: clamp(72px, 10vw, 126px);
}

.section-tight {
    padding-top: 38px;
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
    align-items: end;
    gap: 40px;
    margin-bottom: 38px;
}

.section-intro p {
    margin: 0 0 4px;
    font-size: 18px;
}

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

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.feature-card:nth-child(2) {
    background: var(--ink);
}

.feature-card:nth-child(2) h3,
.feature-card:nth-child(2) p,
.feature-card:nth-child(2) .card-kicker {
    color: var(--cream);
}

.feature-card:nth-child(2) p {
    color: rgba(255, 248, 238, 0.7);
}

.feature-card:nth-child(3) {
    background: var(--butter);
}

.feature-card:nth-child(3) .card-kicker,
.feature-card:nth-child(3) p {
    color: var(--ink);
}

.card-kicker {
    display: block;
    margin-bottom: 42px;
    color: var(--coral-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-card p {
    margin: 0;
    font-size: 16px;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    border-radius: 16px;
    color: var(--ink);
    background: var(--cream-deep);
}

.feature-card:nth-child(2) .feature-icon {
    background: var(--coral);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(255, 253, 248, 0.7);
}

.feature-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(38px, 7vw, 86px);
    align-items: center;
    padding: clamp(34px, 6vw, 70px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--cream);
    background: var(--ink);
}

.showcase h2,
.showcase h3 {
    color: var(--cream);
}

.showcase p {
    color: rgba(255, 248, 238, 0.7);
    font-size: 18px;
}

.showcase .button-secondary {
    border-color: rgba(255, 248, 238, 0.22);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.08);
}

.showcase-visual {
    position: relative;
    min-height: 610px;
}

.showcase-orbit {
    position: absolute;
    inset: 6% 4% 0 10%;
    border: 1px solid rgba(255, 248, 238, 0.18);
    border-radius: 50%;
}

.showcase-phone {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(302px, 58%);
    padding: 8px;
    overflow: hidden;
    border-radius: 44px;
    background: #080808;
    box-shadow: 0 38px 82px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) rotate(-3deg);
}

.showcase-phone img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    aspect-ratio: 1320 / 2868;
    object-fit: cover;
}

.video-note {
    position: absolute;
    right: 0;
    bottom: 54px;
    z-index: 2;
    width: min(230px, 48%);
    padding: 18px;
    border-radius: 22px;
    color: var(--ink);
    background: var(--butter);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
    transform: rotate(4deg);
}

.video-note strong,
.video-note span {
    display: block;
}

.video-note strong {
    font-size: 17px;
}

.video-note span {
    margin-top: 5px;
    color: rgba(24, 23, 21, 0.68);
    font-size: 13px;
    line-height: 1.4;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
}

.step {
    min-height: 245px;
    padding: 32px;
    background: var(--paper);
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 38px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--coral);
    font-size: 13px;
    font-weight: 800;
}

.step p {
    margin: 0;
}

.plus-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 48px;
    align-items: center;
    padding: clamp(34px, 6vw, 68px);
    border: 1px solid rgba(70, 127, 114, 0.25);
    border-radius: var(--radius-lg);
    background: var(--teal);
    box-shadow: var(--shadow-lg);
}

.plus-panel p {
    max-width: 680px;
    color: rgba(24, 23, 21, 0.8);
    font-size: 18px;
}

.plus-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.plus-list li {
    position: relative;
    padding: 15px 18px 15px 48px;
    border: 1px solid rgba(24, 23, 21, 0.12);
    border-radius: 16px;
    background: rgba(255, 253, 248, 0.62);
    font-weight: 700;
}

.plus-list li::before {
    position: absolute;
    top: 17px;
    left: 18px;
    width: 18px;
    height: 10px;
    border-bottom: 3px solid var(--coral-deep);
    border-left: 3px solid var(--coral-deep);
    content: "";
    transform: rotate(-45deg);
}

.fine-print {
    margin-top: 18px;
    color: rgba(24, 23, 21, 0.78);
    font-size: 13px;
}

.final-cta {
    position: relative;
    padding: clamp(44px, 8vw, 82px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.final-cta::before {
    top: -80px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: var(--butter);
}

.final-cta::after {
    right: -50px;
    bottom: -90px;
    width: 210px;
    height: 210px;
    background: var(--coral);
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.final-cta p {
    max-width: 610px;
    margin: 0 auto;
    font-size: 18px;
}

.final-cta .cta-row {
    justify-content: center;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
    padding: 58px clamp(28px, 5vw, 62px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.page-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(44px, 7vw, 72px);
}

.page-hero > div {
    min-width: 0;
}

.page-hero p {
    max-width: 730px;
    margin: 0;
    font-size: 18px;
}

.page-stamp {
    display: grid;
    place-items: center;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--butter);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    transform: rotate(5deg);
}

.support-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 22px;
    align-items: start;
    padding-block: 28px 92px;
}

.support-grid > *,
.legal-shell > * {
    min-width: 0;
}

.support-aside,
.support-content,
.legal-document {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.support-aside {
    position: sticky;
    top: 22px;
    padding: 28px;
}

.support-aside p {
    margin: 8px 0 22px;
}

.support-aside h2 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-top: 1px solid var(--soft-line);
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.contact-link span:last-child {
    color: var(--teal-deep);
    overflow-wrap: anywhere;
}

.support-content {
    padding: clamp(28px, 5vw, 52px);
}

.support-topic + .support-topic {
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px solid var(--line);
}

.support-topic h2 {
    font-size: clamp(28px, 4vw, 40px);
}

.support-topic p,
.support-topic li {
    font-size: 16px;
    line-height: 1.72;
}

.support-topic ol,
.support-topic ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding-left: 22px;
    color: var(--muted);
}

.support-callout {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--coral);
    border-radius: 0 16px 16px 0;
    background: var(--cream-deep);
}

.support-callout p {
    margin: 0;
}

.legal-shell {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding-block: 28px 92px;
}

.legal-nav {
    position: sticky;
    top: 22px;
    display: grid;
    gap: 2px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.86);
    box-shadow: var(--shadow-sm);
}

.legal-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    flex: 0 0 auto;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.legal-nav a:hover {
    color: var(--ink);
    background: var(--cream-deep);
}

.legal-document {
    padding: clamp(28px, 5vw, 58px);
}

.legal-document h2 {
    margin-top: 54px;
    font-size: clamp(26px, 4vw, 38px);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    margin-top: 32px;
    font-size: 20px;
}

.legal-document p,
.legal-document li {
    font-size: 16px;
    line-height: 1.78;
}

.legal-document a,
.support-content a {
    overflow-wrap: anywhere;
}

.legal-document ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
    color: var(--muted);
}

.legal-summary {
    margin-bottom: 38px;
    padding: 22px 24px;
    border: 1px solid rgba(70, 127, 114, 0.22);
    border-radius: 18px;
    background: rgba(114, 169, 154, 0.12);
}

.legal-summary p {
    margin: 0;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.inline-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--teal-deep);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.inline-links a:hover {
    background: var(--cream-deep);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 0 42px;
    border-top: 1px solid var(--line);
}

.footer-brand p {
    margin: 8px 0 0;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 20px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.reveal {
    opacity: 1;
    transform: none;
}

.reveal.is-visible {
    animation: reveal-in 520ms ease both;
}

@keyframes reveal-in {
    from {
        transform: translateY(18px);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto 1fr;
        column-gap: 16px;
        row-gap: 6px;
        padding-block: 14px;
    }

    .main-nav {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 18px;
    }

    .language-switcher {
        grid-row: 1;
        grid-column: 2;
        justify-self: end;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 52px;
    }

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

    .hero-visual {
        width: min(590px, 100%);
        margin-inline: auto;
    }

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

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

    .card-kicker {
        margin-bottom: 28px;
    }

    .showcase,
    .plus-panel {
        grid-template-columns: 1fr;
    }

    .showcase-copy {
        max-width: 720px;
    }

    .support-grid,
    .legal-shell {
        grid-template-columns: 1fr;
    }

    .support-aside,
    .legal-nav {
        position: static;
    }

    .legal-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        overflow: visible;
        padding: 12px;
    }

    .legal-nav a {
        background: var(--cream-deep);
        white-space: nowrap;
    }
}

@media (max-width: 720px) {
    .site-wrap {
        width: min(100% - 24px, var(--content));
    }

    .site-header {
        min-height: 76px;
    }

    .brand {
        font-size: 18px;
    }

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

    .language-switcher {
        gap: 0;
    }

    .locale-option {
        min-width: 44px;
        min-height: 44px;
        padding-inline: 8px;
        font-size: 11px;
    }

    .main-nav {
        gap: 6px;
    }

    .main-nav a {
        flex: 1 1 0;
        justify-content: center;
        padding-inline: 8px;
    }

    .hero {
        min-height: 0;
        padding: 38px 22px 20px;
        border-radius: 30px;
    }

    h1 {
        font-size: clamp(43px, 14vw, 61px);
    }

    h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .hero-actions .button,
    .final-cta .button {
        width: 100%;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

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

    .visual-field {
        inset: 28px 4px 10px 20px;
    }

    .phone-frame {
        width: min(232px, 68%);
    }

    .floating-card {
        min-width: 152px;
        padding: 13px 15px;
    }

    .sound-card {
        top: 78px;
        left: -4px;
    }

    .smile-card {
        right: -3px;
        bottom: 54px;
    }

    .section {
        padding-block: 72px;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-card,
    .step,
    .support-aside,
    .support-content,
    .legal-document {
        padding: 24px;
    }

    .showcase,
    .plus-panel,
    .final-cta {
        padding: 30px 22px;
        border-radius: 30px;
    }

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

    .showcase-phone {
        width: min(236px, 72%);
    }

    .video-note {
        right: -10px;
        width: 52%;
    }

    .page-hero {
        grid-template-columns: 1fr;
        padding: 38px 24px;
        border-radius: 30px;
    }

    .page-hero h1 {
        font-size: clamp(34px, 9vw, 40px);
        overflow-wrap: anywhere;
    }

    .page-stamp {
        width: auto;
        height: auto;
        justify-self: start;
        padding: 10px 14px;
        border-radius: 999px;
        transform: none;
    }

    .support-grid,
    .legal-shell {
        padding-bottom: 72px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .locale-panel,
    .reveal.is-visible {
        animation: none !important;
    }

    .button:hover {
        transform: none;
    }
}

@media (forced-colors: active) {
    .button,
    .language-switcher,
    .locale-option.is-active {
        border: 1px solid ButtonText;
    }

    .main-nav a[aria-current="page"] {
        text-decoration: underline;
    }
}
