:root {
    --pink: #d9326a;
    --pink-dark: #a9184c;
    --pink-soft: #fbe9ef;
    --teal: #137471;
    --teal-dark: #0a514f;
    --amber: #d18613;
    --ink: #111111;
    --ink-soft: #525156;
    --line: #dedde1;
    --surface: #f6f6f7;
    --white: #ffffff;
    --night: #171416;
    --radius: 12px;
    --shell: min(1180px, calc(100vw - 40px));
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --z-header: 20;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid transparent;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 8px rgba(17, 17, 17, .04);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    font-size: 21px;
    font-weight: 780;
    letter-spacing: -.025em;
    text-decoration: none;
}

.brand img { border-radius: 10px; }

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 42px);
    margin-left: auto;
}

.main-nav a,
.footer-column a {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 150ms ease;
}

.main-nav a:hover,
.footer-column a:hover { color: var(--pink-dark); }

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 150ms ease, transform 150ms ease;
}

.header-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }

.hero {
    overflow: hidden;
    padding-top: clamp(48px, 7vw, 90px);
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
    align-items: center;
    gap: clamp(42px, 8vw, 112px);
}

.hero-copy { padding-bottom: clamp(62px, 8vw, 105px); }

.launch-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 750;
}

.launch-note span {
    width: 10px;
    height: 10px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(19, 116, 113, .13);
}

.hero h1,
.section-heading h2,
.promise-statement h2,
.trust-copy h2,
.closing-inner h2,
.legal-hero h1,
.not-found h1 {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    font-weight: 780;
    letter-spacing: -.038em;
    line-height: 1.02;
    text-wrap: balance;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 6.6vw, 5.7rem);
}

.hero h1 em {
    display: block;
    color: var(--pink);
    font-style: normal;
}

.hero-lede {
    max-width: 610px;
    margin: 28px 0 30px;
    color: #444348;
    font-size: clamp(1.12rem, 1.7vw, 1.35rem);
    line-height: 1.5;
    text-wrap: pretty;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 180ms var(--ease-out), background 180ms ease;
}

.button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms var(--ease-out);
}

.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button--primary { color: var(--white); background: var(--pink); }
.button--primary:hover { background: var(--pink-dark); }
.button--light { color: var(--ink); background: var(--white); }

.availability { display: grid; color: #66646a; font-size: 14px; line-height: 1.35; }
.availability strong { color: var(--ink); font-size: 15px; }

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    max-width: 680px;
    margin: 31px 0 0;
    padding: 0;
    color: #545258;
    font-size: 14px;
    list-style: none;
}

.hero-points li { position: relative; padding-left: 19px; }
.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 850;
}

.hero-product {
    position: relative;
    min-height: 660px;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(217, 50, 106, .18);
    border-radius: 50%;
}

.orbit--one { width: 555px; height: 555px; }
.orbit--two { width: 410px; height: 410px; border-color: rgba(19, 116, 113, .22); }

.place-stamp {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 2px;
    padding: 10px 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 650;
}

.place-stamp span { color: var(--pink-dark); font-weight: 800; }
.place-stamp--top { top: 92px; right: -10px; transform: rotate(3deg); }
.place-stamp--bottom { bottom: 72px; left: -8px; transform: rotate(-3deg); }

.phone {
    position: relative;
    z-index: 2;
    width: 326px;
    padding: 10px;
    background: var(--night);
    border-radius: 46px;
    box-shadow: 0 8px 8px rgba(17, 17, 17, .15), 0 34px 65px rgba(83, 22, 48, .18);
    transform: rotate(2.2deg);
    animation: phone-in 850ms var(--ease-out) both;
}

.phone-speaker {
    position: absolute;
    z-index: 4;
    top: 17px;
    left: 50%;
    width: 91px;
    height: 24px;
    background: var(--night);
    border-radius: 16px;
    transform: translateX(-50%);
}

.phone-screen {
    position: relative;
    height: 628px;
    overflow: hidden;
    background: var(--surface);
    border-radius: 37px;
}

.phone-status {
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 24px 0;
    color: var(--ink);
    font-size: 11px;
    font-weight: 750;
}

.app-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 19px 9px;
}

.app-heading div { display: grid; line-height: 1.15; }
.app-heading small { color: #6b6970; font-size: 11px; }
.app-heading strong { font-size: 21px; letter-spacing: -.03em; }
.app-heading img { border-radius: 10px; }

.story-row { display: flex; gap: 13px; padding: 6px 19px 15px; }
.story {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 3px solid var(--surface);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 0 0 2px var(--pink);
}
.story--run { background: #b72858; }
.story--yoga { background: #137471; }
.story--bike { background: #4c4a79; }
.story--club { background: #8f5d18; }

.phone-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 19px 9px;
    font-size: 12px;
}
.phone-section-title strong { font-size: 16px; }
.phone-section-title span { color: var(--pink-dark); font-weight: 700; }

.activity-preview {
    margin: 0 14px;
    overflow: hidden;
    background: var(--white);
    border-radius: 10px;
}

.activity-photo {
    position: relative;
    height: 178px;
    overflow: hidden;
    background:
        radial-gradient(circle at 73% 42%, rgba(255, 255, 255, .9) 0 2px, transparent 3px),
        linear-gradient(150deg, transparent 0 52%, rgba(255,255,255,.62) 53% 54%, transparent 55%),
        linear-gradient(25deg, #194e4b 0 28%, #287f76 29% 45%, #d77a4a 46% 60%, #f2bd72 61% 100%);
}

.activity-photo::after {
    content: "";
    position: absolute;
    inset: auto -12% -36px -12%;
    height: 102px;
    background: #134946;
    border-radius: 48% 48% 0 0;
    transform: rotate(-5deg);
}

.activity-tag, .activity-time {
    position: absolute;
    z-index: 1;
    top: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
}
.activity-tag { left: 12px; color: var(--white); background: var(--teal-dark); }
.activity-time { right: 12px; background: var(--white); }

.activity-content { padding: 13px 14px 15px; }
.activity-meta { color: var(--pink-dark); font-size: 10px; font-weight: 780; }
.activity-content h2 { margin: 2px 0 1px; font-size: 17px; line-height: 1.25; }
.activity-content p { margin: 0; color: #646168; font-size: 11px; }
.activity-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 13px; }
.activity-footer button { padding: 7px 11px; color: var(--white); background: var(--pink); border: 0; border-radius: 6px; font-size: 10px; font-weight: 800; }

.avatar-stack { display: flex; padding-left: 7px; }
.avatar-stack i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    margin-left: -7px;
    color: var(--white);
    background: var(--teal);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 8px;
    font-style: normal;
    font-weight: 800;
}
.avatar-stack i:nth-child(2) { background: var(--pink); }
.avatar-stack i:nth-child(3) { background: var(--amber); }
.avatar-stack i:nth-child(4) { color: var(--ink); background: #ecebef; }

.app-tabs {
    position: absolute;
    inset: auto 0 0;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px 8px 9px;
    background: rgba(255,255,255,.97);
    border-top: 1px solid #e8e7ea;
}
.app-tabs span { min-width: 44px; display: grid; justify-items: center; color: #77747b; font-size: 8px; }
.app-tabs b { font-size: 16px; font-weight: 650; line-height: 1.2; }
.app-tabs .is-active { color: var(--pink); }
.app-tabs .tab-create b { width: 36px; height: 36px; display: grid; place-items: center; color: var(--white); background: var(--pink); border-radius: 9px; font-size: 22px; }

.sport-ribbon {
    width: 100%;
    overflow: hidden;
    color: var(--white);
    background: var(--pink);
    transform: rotate(-1.2deg) scale(1.02);
}

.sport-ribbon div {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    animation: ribbon 32s linear infinite;
}

.sport-ribbon span { font-size: 15px; font-weight: 750; }
.sport-ribbon i { width: 5px; height: 5px; background: var(--white); border-radius: 50%; opacity: .7; }

.local-section { padding: clamp(105px, 13vw, 180px) 0 clamp(90px, 11vw, 145px); }
.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .63fr);
    align-items: end;
    gap: clamp(40px, 9vw, 130px);
    margin-bottom: 65px;
}
.section-heading h2 { max-width: 720px; font-size: clamp(2.65rem, 5vw, 4.8rem); }
.section-heading p { max-width: 570px; margin: 0 0 5px; color: var(--ink-soft); font-size: 19px; line-height: 1.55; }

.activity-timeline { border-top: 2px solid var(--ink); }
.timeline-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 116px;
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    transition: background 180ms ease, padding 180ms ease;
}
.timeline-item:hover { background: var(--surface); padding-inline: 26px; }
.timeline-item time { color: var(--ink); font-size: 23px; font-weight: 780; letter-spacing: -.03em; }
.timeline-main { display: flex; align-items: center; gap: 17px; }
.timeline-main h3 { margin: 0 0 2px; font-size: 20px; letter-spacing: -.02em; }
.timeline-main p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.sport-dot { flex: 0 0 14px; width: 14px; height: 14px; border-radius: 50%; }
.sport-dot--pink { background: var(--pink); }
.sport-dot--teal { background: var(--teal); }
.sport-dot--amber { background: var(--amber); }
.timeline-status { color: var(--teal-dark); background: #e4f1f0; padding: 6px 10px; border-radius: 6px; font-size: 13px; font-weight: 730; }

.promise-section { padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: var(--night); }
.promise-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .82fr); gap: clamp(70px, 11vw, 160px); }
.promise-statement { position: sticky; top: 130px; align-self: start; }
.statement-mark { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 30px; color: var(--white); background: var(--pink); border-radius: 10px; font-size: 28px; font-weight: 850; }
.promise-statement p { max-width: 500px; margin: 0 0 14px; color: #ccc7ca; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.promise-statement h2 { max-width: 620px; font-size: clamp(3rem, 5.5vw, 5.1rem); }
.promise-list { border-top: 1px solid #4a4548; }
.promise-list article { padding: 34px 0 38px; border-bottom: 1px solid #4a4548; }
.promise-list span { color: #ee8bab; font-size: 14px; font-weight: 750; }
.promise-list h3 { margin: 8px 0 9px; font-size: 24px; letter-spacing: -.025em; }
.promise-list p { max-width: 520px; margin: 0; color: #bfbabe; }

.trust-section { padding: clamp(95px, 12vw, 165px) 0; background: #e9f4f3; }
.trust-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr); gap: clamp(70px, 12vw, 170px); align-items: start; }
.trust-copy h2 { max-width: 610px; font-size: clamp(2.75rem, 5vw, 4.8rem); }
.trust-copy p { max-width: 590px; margin: 25px 0 30px; color: #315856; font-size: 19px; }
.text-link { color: var(--teal-dark); font-weight: 780; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform 150ms ease; }
.text-link:hover span { transform: translateX(4px); }
.trust-principles { border-top: 2px solid var(--teal-dark); }
.trust-principles div { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid #b8d4d2; }
.trust-principles strong { color: var(--teal-dark); }
.trust-principles span { color: #365e5c; }

.closing-section { padding: 65px 0; color: var(--white); background: var(--pink); }
.closing-inner { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.closing-inner img { border-radius: 24px; }
.closing-inner p { margin: 0 0 4px; color: #ffe4ed; font-weight: 700; }
.closing-inner h2 { max-width: 720px; font-size: clamp(2rem, 4vw, 3.9rem); }

.site-footer { padding: 68px 0 28px; color: #d7d3d5; background: var(--night); }
.footer-grid { display: grid; grid-template-columns: minmax(280px, 1fr) 180px 180px; gap: 60px; }
.brand--footer { color: var(--white); }
.footer-brand > p { margin: 20px 0 0; }
.footer-brand .operator-note { margin-top: 3px; color: #9e999c; font-size: 14px; }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h2 { margin: 0 0 7px; color: var(--white); font-size: 15px; }
.footer-column a { color: #bbb6b9; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 24px; border-top: 1px solid #3b3739; color: #8f8a8d; font-size: 13px; }

/* Legal pages */
.legal-page { background: var(--surface); }
.legal-hero { padding: clamp(68px, 9vw, 120px) 0 60px; background: var(--white); border-bottom: 1px solid var(--line); }
.legal-hero-inner { max-width: 900px; }
.legal-hero .legal-label { margin: 0 0 14px; color: var(--pink-dark); font-weight: 750; }
.legal-hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    hyphens: manual;
    overflow-wrap: anywhere;
}
.legal-hero .legal-intro { max-width: 760px; margin: 25px 0 0; color: var(--ink-soft); font-size: 20px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 28px; color: #67656b; font-size: 14px; }
.legal-layout { display: grid; grid-template-columns: 245px minmax(0, 740px); gap: clamp(50px, 8vw, 110px); padding: 70px 0 110px; }
.legal-nav { position: sticky; top: 112px; align-self: start; display: grid; gap: 4px; }
.legal-nav strong { margin-bottom: 9px; font-size: 14px; }
.legal-nav a { padding: 6px 0; color: #67656b; font-size: 14px; text-decoration: none; }
.legal-nav a:hover { color: var(--pink-dark); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 110px; margin-bottom: 50px; }
.legal-content h2 { margin: 0 0 17px; font-size: clamp(1.55rem, 3vw, 2.2rem); letter-spacing: -.025em; line-height: 1.2; text-wrap: balance; }
.legal-content h3 { margin: 28px 0 9px; font-size: 19px; }
.legal-content p, .legal-content li { color: #454349; }
.legal-content p { max-width: 72ch; margin: 0 0 15px; }
.legal-content ul { max-width: 72ch; margin: 12px 0 18px; padding-left: 21px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-box { margin: 18px 0 22px; padding: 21px 23px; color: #244c49; background: #e3f0ef; border-radius: 10px; }
.legal-box p:last-child { margin-bottom: 0; }
.contact-block { font-style: normal; line-height: 1.75; }

/* 404 */
.not-found-page { background: var(--surface); }
.not-found {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding: 65px 0 100px;
    overflow: hidden;
}
.not-found-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); align-items: center; gap: clamp(50px, 10vw, 150px); }
.error-code { margin: 0 0 10px; color: var(--pink); font-size: 16px; font-weight: 820; }
.not-found h1 { max-width: 650px; font-size: clamp(3.4rem, 7vw, 6rem); }
.not-found-copy > p:not(.error-code) { max-width: 570px; margin: 25px 0 31px; color: var(--ink-soft); font-size: 19px; }
.not-found-art { position: relative; min-height: 470px; display: grid; place-items: center; }
.route-map { position: relative; width: min(430px, 90vw); aspect-ratio: 1; border: 1px solid #cbc9ce; border-radius: 50%; }
.route-map::before, .route-map::after { content: ""; position: absolute; inset: 14%; border: 1px solid #d7d5d9; border-radius: 50%; }
.route-map::after { inset: 31%; }
.route-line { position: absolute; top: 48%; left: 12%; width: 77%; height: 4px; background: var(--teal); transform: rotate(-21deg); transform-origin: center; }
.route-line::before, .route-line::after { content: ""; position: absolute; width: 17px; height: 17px; top: 50%; background: var(--white); border: 5px solid var(--teal); border-radius: 50%; transform: translateY(-50%); }
.route-line::before { left: -5px; }
.route-line::after { right: -5px; border-color: var(--pink); }
.lost-pin { position: absolute; z-index: 2; display: grid; place-items: center; width: 80px; height: 80px; color: var(--white); background: var(--pink); border-radius: 50% 50% 50% 12px; font-size: 25px; font-weight: 850; transform: rotate(-45deg); }
.lost-pin span { transform: rotate(45deg); }
.map-label { position: absolute; right: 4%; bottom: 15%; padding: 8px 10px; color: var(--teal-dark); background: var(--white); border: 1px solid #c9dedd; border-radius: 8px; font-size: 13px; font-weight: 750; transform: rotate(3deg); }

@keyframes phone-in {
    from { opacity: 0; transform: translateY(32px) rotate(4deg) scale(.96); }
    to { opacity: 1; transform: translateY(0) rotate(2.2deg) scale(1); }
}

@keyframes ribbon { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
    .main-nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding-bottom: 0; }
    .hero-product { min-height: 690px; }
    .place-stamp--top { right: 5%; }
    .place-stamp--bottom { left: 6%; }
    .section-heading--split,
    .promise-grid,
    .trust-grid { grid-template-columns: 1fr; }
    .section-heading--split { gap: 25px; }
    .promise-statement { position: static; }
    .closing-inner { grid-template-columns: auto 1fr; }
    .closing-inner .button { grid-column: 2; justify-self: start; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 7px 17px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
    .legal-nav strong { width: 100%; }
    .not-found-grid { grid-template-columns: 1fr; }
    .not-found-art { min-height: 390px; }
}

@media (max-width: 680px) {
    :root { --shell: min(100% - 30px, 1180px); }
    body { font-size: 16px; }
    .header-inner { min-height: 68px; }
    .brand { font-size: 19px; }
    .brand img { width: 38px; height: 38px; }
    .header-cta { min-height: 40px; padding: 0 13px; font-size: 13px; }
    .hero { padding-top: 44px; }
    .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
    .button { width: 100%; }
    .hero-points { display: grid; }
    .hero-product { min-height: 610px; margin-inline: -15px; }
    .phone { width: 288px; border-radius: 40px; }
    .phone-screen { height: 554px; border-radius: 32px; }
    .activity-photo { height: 136px; }
    .orbit--one { width: 440px; height: 440px; }
    .orbit--two { width: 320px; height: 320px; }
    .place-stamp { display: none; }
    .timeline-item { grid-template-columns: 66px minmax(0, 1fr); gap: 13px; padding-inline: 4px; }
    .timeline-item:hover { padding-inline: 4px; }
    .timeline-item time { font-size: 18px; }
    .timeline-status { grid-column: 2; justify-self: start; }
    .promise-grid, .trust-grid { gap: 58px; }
    .trust-principles div { grid-template-columns: 1fr; gap: 5px; }
    .closing-inner { grid-template-columns: 70px 1fr; gap: 19px; }
    .closing-inner img { width: 70px; border-radius: 16px; }
    .closing-inner .button { grid-column: 1 / -1; justify-self: stretch; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 4px; }
    .legal-hero { padding-top: 55px; }
    .legal-hero h1 { font-size: clamp(2.75rem, 13vw, 4.5rem); }
    .legal-layout { padding-top: 45px; }
    .not-found { padding-top: 40px; }
    .not-found h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
    .not-found-art { min-height: 310px; }
    .route-map { width: 300px; }
}

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