:root {
    --ink: #1d1d1f;
    --muted: #6e6e73;
    --blue: #0071e3;
    --blue-pressed: #0068d1;
    --surface: #ffffff;
    --surface-soft: #f5f5f7;
    --line: rgba(29, 29, 31, 0.12);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.1);
    --content-width: 1120px;
    --card-radius: 8px;
    --control-radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--surface);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: #fff;
    background: #000;
    border-radius: 8px;
    transform: translateY(-160%);
}

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

:focus-visible {
    outline: 3px solid rgba(0, 113, 227, 0.72);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: max(12px, env(safe-area-inset-top));
    right: 0;
    left: 0;
    pointer-events: none;
}

.nav-shell {
    width: min(var(--content-width), calc(100% - 32px));
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    padding: 8px 10px 8px 12px;
    color: #fff;
    background: rgba(16, 17, 20, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    pointer-events: auto;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
}

.brand img {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    object-fit: cover;
    border-radius: 9px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.brand span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 520;
    white-space: nowrap;
}

.nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
    color: #fff;
}

.nav-download {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    color: #fff;
    background: var(--blue);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.hero {
    position: relative;
    height: min(840px, calc(100svh - 24px));
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #101114;
}

.hero-image,
.hero-scrim {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center 58%;
    transform: scale(1.015);
}

.hero-scrim {
    z-index: -1;
    background: rgba(5, 11, 18, 0.5);
}

.hero-content {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
    padding: 150px 0 70px;
}

.hero-kicker {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 650;
}

.hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 82px;
    font-weight: 720;
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.24);
}

.hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 22px;
    font-weight: 450;
    line-height: 1.55;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.hero-download,
.hero-more {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border-radius: var(--control-radius);
    font-size: 15px;
    font-weight: 650;
}

.hero-download {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 32px rgba(0, 113, 227, 0.26);
}

.hero-download:hover,
.nav-download:hover {
    background: #0a7be8;
}

.hero-more {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero-more:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 38px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 550;
}

.hero-details i {
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
}

.section-shell {
    width: min(var(--content-width), calc(100% - 40px));
    margin: 0 auto;
}

.product-intro {
    padding: 104px 0;
    background: var(--surface-soft);
}

.product-intro-inner {
    display: grid;
    grid-template-columns: 190px minmax(0, 720px);
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.intro-app-icon {
    width: 156px;
    height: 156px;
    object-fit: cover;
    border-radius: 36px;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
}

.section-kicker {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 650;
}

.product-intro h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
    text-wrap: balance;
}

.product-intro-copy > p:last-child {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.product-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.product-principles article {
    min-width: 0;
    padding: 28px 30px;
}

.product-principles article:first-child {
    padding-left: 0;
}

.product-principles article:last-child {
    padding-right: 0;
}

.product-principles article + article {
    border-left: 1px solid var(--line);
}

.product-principles span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 680;
}

.product-principles strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 680;
    line-height: 1.35;
}

.product-principles p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.journey-flow-section {
    padding: 104px 0;
    background: var(--surface);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.journey-step {
    min-width: 0;
    padding: 28px 26px 32px;
}

.journey-step:first-child {
    padding-left: 0;
}

.journey-step:last-child {
    padding-right: 0;
}

.journey-step + .journey-step {
    border-left: 1px solid var(--line);
}

.journey-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.journey-step-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0071e3;
    background: #e8f2ff;
    border-radius: 13px;
}

.journey-step:nth-child(2) .journey-step-icon {
    color: #d33b32;
    background: #ffebea;
}

.journey-step:nth-child(3) .journey-step-icon {
    color: #178562;
    background: #e4f5ee;
}

.journey-step:nth-child(4) .journey-step-icon {
    color: #e36414;
    background: #fff0e5;
}

.journey-step-icon i,
.journey-step-icon svg,
.continuity-icon i,
.continuity-icon svg {
    width: 23px;
    height: 23px;
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    stroke-width: 1.8;
}

.journey-step-index {
    color: #a1a1a6;
    font-size: 12px;
    font-weight: 650;
}

.journey-step-phase {
    margin: 26px 0 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 650;
}

.journey-step h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 680;
    line-height: 1.4;
}

.journey-step > p:last-child {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
}

.services-section {
    padding: 104px 0;
    background: var(--surface-soft);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.section-heading h2,
.journey-heading h2,
.continuity-heading h2,
.download-copy h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-heading > p,
.journey-heading > p:last-child,
.continuity-heading > p:last-child,
.download-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

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

.service-card {
    position: relative;
    min-height: 222px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(29, 29, 31, 0.06);
    border-radius: var(--card-radius);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--service-color);
    background: var(--service-soft);
    border-radius: 13px;
}

.service-icon i,
.service-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    stroke-width: 1.8;
}

.service-index {
    position: absolute;
    top: 28px;
    right: 26px;
    color: #a1a1a6;
    font-size: 12px;
    font-weight: 650;
}

.service-card h3 {
    margin: auto 0 7px;
    font-size: 22px;
    font-weight: 680;
    line-height: 1.3;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.continuity-section {
    padding: 104px 0;
    background: #edf6f3;
}

.continuity-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    align-items: start;
    gap: 84px;
}

.continuity-heading {
    max-width: 480px;
}

.continuity-heading .section-kicker {
    color: #178562;
}

.continuity-heading > p:last-child {
    max-width: 460px;
    margin-top: 22px;
}

.continuity-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(23, 133, 98, 0.2);
    border-bottom: 1px solid rgba(23, 133, 98, 0.2);
}

.continuity-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 22px;
}

.continuity-item:nth-child(even) {
    border-left: 1px solid rgba(23, 133, 98, 0.2);
}

.continuity-item:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 133, 98, 0.2);
}

.continuity-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #178562;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(23, 133, 98, 0.08);
}

.continuity-item h3 {
    margin: 1px 0 6px;
    font-size: 18px;
    font-weight: 680;
    line-height: 1.35;
}

.continuity-item p {
    margin: 0;
    color: #587168;
    font-size: 14px;
    line-height: 1.65;
}

.journey-section {
    padding: 104px 0;
    color: #f5f5f7;
    background: #101114;
}

.journey-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-kicker-light {
    color: #69aef2;
}

.journey-heading > p:last-child {
    max-width: 680px;
    margin-top: 20px;
    color: #a1a1a6;
}

.journey-gallery {
    height: 470px;
    display: grid;
    grid-template-columns: 1.44fr 0.78fr 0.78fr;
    gap: 14px;
}

.journey-photo {
    position: relative;
    min-width: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #242426;
    border-radius: var(--card-radius);
}

.journey-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-photo-wide img {
    object-position: center 58%;
}

.journey-photo:nth-child(2) img {
    object-position: 58% center;
}

.journey-photo:nth-child(3) img {
    object-position: 52% center;
}

.journey-photo figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(20, 20, 22, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    font-size: 14px;
    font-weight: 620;
}

.journey-photo figcaption small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 600;
}

.download-section {
    padding: 104px 0;
    background: var(--surface);
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 84px;
}

.download-copy {
    max-width: 540px;
}

.download-identity {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
}

.download-identity img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 17px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.download-identity div {
    display: grid;
    gap: 3px;
}

.download-identity span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 550;
}

.download-identity strong {
    font-size: 18px;
    font-weight: 680;
}

.download-copy > p {
    max-width: 500px;
    margin-top: 22px;
}

.app-store-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 32px;
    padding: 0 20px;
    color: #fff;
    background: #1d1d1f;
    border-radius: var(--control-radius);
    font-size: 15px;
    font-weight: 650;
}

.app-store-button:hover {
    background: #343437;
}

.brand-art {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #f5f7fb;
    border: 1px solid rgba(29, 29, 31, 0.07);
    border-radius: var(--card-radius);
}

.brand-art img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.site-footer {
    padding: 46px 0 max(46px, env(safe-area-inset-bottom));
    color: #a1a1a6;
    background: #101114;
}

.footer-shell {
    width: min(var(--content-width), calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    margin: 0 auto;
    font-size: 13px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    color: #f5f5f7;
    font-size: 14px;
    font-weight: 620;
}

.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-shell > p {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-shell,
.nav-links a,
.nav-download,
.hero-download,
.hero-more,
.app-store-button,
.pressable {
    transition-property: color, background-color, border-color, box-shadow, transform;
    transition-duration: 320ms;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .nav-shell {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

.site-header.is-scrolled .nav-links a {
    color: rgba(29, 29, 31, 0.72);
}

.site-header.is-scrolled .nav-links a:hover {
    color: var(--ink);
}

.pressable {
    transform: scale(1);
    transform-origin: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.pressable.is-pressed,
.pressable:active {
    transform: scale(0.97);
    transition-duration: 90ms;
    transition-timing-function: ease-out;
}

.motion-ready .reveal {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.motion-ready .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.motion-ready .services-grid .reveal:nth-child(2),
.motion-ready .journey-steps .reveal:nth-child(2),
.motion-ready .continuity-list .reveal:nth-child(2),
.motion-ready .journey-gallery .reveal:nth-child(2) {
    transition-delay: 70ms;
}

.motion-ready .services-grid .reveal:nth-child(3),
.motion-ready .journey-steps .reveal:nth-child(3),
.motion-ready .continuity-list .reveal:nth-child(3),
.motion-ready .journey-gallery .reveal:nth-child(3) {
    transition-delay: 140ms;
}

.motion-ready .services-grid .reveal:nth-child(4),
.motion-ready .journey-steps .reveal:nth-child(4),
.motion-ready .continuity-list .reveal:nth-child(4) {
    transition-delay: 210ms;
}

.motion-ready .services-grid .reveal:nth-child(5) {
    transition-delay: 280ms;
}

.motion-ready .services-grid .reveal:nth-child(6) {
    transition-delay: 350ms;
}

@media (hover: hover) and (pointer: fine) {
    .service-card,
    .journey-photo,
    .brand-art {
        transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease, border-color 380ms ease;
    }

    .service-card:hover {
        transform: translate3d(0, -5px, 0);
        border-color: rgba(29, 29, 31, 0.11);
        box-shadow: var(--shadow-soft);
    }

    .journey-photo:hover,
    .brand-art:hover {
        transform: translate3d(0, -4px, 0);
        box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    }

    .journey-photo img,
    .brand-art img {
        transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .journey-photo:hover img,
    .brand-art:hover img {
        transform: scale(1.018);
    }
}

@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;
        transition-delay: 0ms !important;
    }

    .reveal,
    .motion-ready .reveal,
    .motion-ready .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .nav-shell {
        background: rgba(16, 17, 20, 0.94);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.is-scrolled .nav-shell {
        background: #fff;
    }

    .hero-more,
    .journey-photo figcaption {
        background: rgba(16, 17, 20, 0.94);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

@media (prefers-contrast: more) {
    .nav-shell,
    .site-header.is-scrolled .nav-shell,
    .service-card,
    .brand-art {
        border-color: currentColor;
    }

    .hero-scrim {
        background: rgba(0, 0, 0, 0.68);
    }
}

@media (max-width: 820px) {
    .nav-shell {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 62px;
    }

    .product-intro-inner {
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 38px;
    }

    .intro-app-icon {
        width: 124px;
        height: 124px;
        border-radius: 28px;
    }

    .product-intro h2,
    .section-heading h2,
    .journey-heading h2,
    .continuity-heading h2,
    .download-copy h2 {
        font-size: 40px;
    }

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

    .journey-step:nth-child(3) {
        border-left: 0;
    }

    .journey-step:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

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

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

    .continuity-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .continuity-heading {
        max-width: 680px;
    }

    .journey-gallery {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-photo {
        height: 330px;
    }

    .journey-photo-wide {
        height: 390px;
        grid-column: 1 / -1;
    }

    .download-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .download-copy {
        max-width: 680px;
    }
}

@media (max-width: 560px) {
    .site-header {
        top: max(8px, env(safe-area-inset-top));
    }

    .nav-shell {
        width: calc(100% - 20px);
        min-height: 54px;
        gap: 10px;
        padding: 7px 8px;
        border-radius: 16px;
    }

    .brand {
        gap: 8px;
        font-size: 14px;
    }

    .brand img {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 8px;
    }

    .nav-download {
        min-height: 38px;
        padding: 0 12px;
    }

    .hero {
        height: calc(100svh - 12px);
        min-height: 540px;
    }

    .hero-image {
        object-position: 58% center;
    }

    .hero-content {
        width: calc(100% - 32px);
        padding: 96px 0 36px;
    }

    .hero-kicker {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 44px;
        line-height: 1.08;
    }

    .hero-copy {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.55;
    }

    .hero-actions {
        align-items: stretch;
        margin-top: 28px;
    }

    .hero-download,
    .hero-more {
        min-height: 48px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-details {
        display: none;
    }

    .product-intro,
    .journey-flow-section,
    .services-section,
    .continuity-section,
    .journey-section,
    .download-section {
        padding: 72px 0;
    }

    .product-intro-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-app-icon {
        width: 104px;
        height: 104px;
        border-radius: 24px;
    }

    .product-intro h2,
    .section-heading h2,
    .journey-heading h2,
    .continuity-heading h2,
    .download-copy h2 {
        font-size: 36px;
    }

    .product-intro-copy > p:last-child {
        font-size: 17px;
    }

    .section-heading,
    .continuity-heading,
    .journey-heading {
        margin-bottom: 34px;
    }

    .product-principles {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .product-principles article,
    .product-principles article:first-child,
    .product-principles article:last-child {
        padding: 22px 0;
    }

    .product-principles article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .journey-steps {
        grid-template-columns: 1fr;
    }

    .journey-step,
    .journey-step:first-child,
    .journey-step:last-child {
        padding: 24px 0 26px;
    }

    .journey-step + .journey-step,
    .journey-step:nth-child(3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .journey-step-phase {
        margin-top: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 190px;
    }

    .continuity-list {
        grid-template-columns: 1fr;
    }

    .continuity-item,
    .continuity-item:nth-child(even) {
        padding: 22px 0;
        border-left: 0;
    }

    .continuity-item:nth-child(n + 2) {
        border-top: 1px solid rgba(23, 133, 98, 0.2);
    }

    .journey-gallery {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 88%;
        gap: 12px;
        margin-right: -16px;
        padding-right: 16px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .journey-gallery::-webkit-scrollbar {
        display: none;
    }

    .journey-photo,
    .journey-photo-wide {
        height: 390px;
        grid-column: auto;
        scroll-snap-align: start;
    }

    .download-identity {
        margin-bottom: 28px;
    }

    .brand-art {
        width: calc(100% + 8px);
        margin-left: -4px;
    }

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

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