:root {
    --ink: #11110f;
    --paper: #f5f3ee;
    --white: #fff;
    --muted: #716f68;
    --line: rgba(17, 17, 15, .13);
    --red: #e34c3b;
    --green: #267259;
    --blue: #2769a5;
    --gold: #b67a20;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 280px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Noto Sans SC", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
}

.site-header {
    height: 76px;
    padding: 0 clamp(22px, 4vw, 70px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: Syne, sans-serif;
    font-weight: 800;
    font-size: 20px;
}

.brand img {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, .08);
}

nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 600;
}

nav a {
    transition: opacity .2s;
}

nav a:hover {
    opacity: .55;
}

.nav-qq {
    border: 1px solid var(--ink);
    padding: 10px 16px;
    line-height: 1.2;
}

.nav-qq:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    opacity: 1;
}

.nav-download {
    background: var(--ink);
    color: white;
    padding: 11px 18px;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 11px;
}

.menu-button span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 6px 0;
}

.hero {
    min-height: min(900px, 100vh);
    padding: 140px clamp(24px, 7vw, 120px) 70px;
    display: grid;
    grid-template-columns: minmax(370px, .84fr) minmax(500px, 1.16fr);
    align-items: center;
    gap: 4vw;
    overflow: visible;
}

.hero-copy {
    min-width: 0;
    z-index: 2;
    animation: rise .8s both;
}

.eyebrow, .section-index {
    font: 700 12px/1 Syne, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

h1 {
    max-width: 100%;
    font: 800 clamp(58px, 6vw, 104px)/.88 Syne, sans-serif;
    margin: 46px 0 26px;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-slogan {
    font-weight: 900;
    font-size: clamp(32px, 3.3vw, 54px);
    line-height: 1.2;
    margin: 0 0 24px;
}

.hero-description {
    max-width: 470px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.download-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.store-button {
    min-width: 178px;
    height: 62px;
    padding: 9px 18px;
    border: 1px solid var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 11px;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 var(--red);
}

.store-button svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
    flex: none;
}

.store-button span {
    font: 700 17px/1.1 Syne, sans-serif;
}

.store-button small {
    display: block;
    font: 500 10px/1.2 "Noto Sans SC", sans-serif;
    margin-bottom: 3px;
}

.store-primary {
    background: var(--ink);
    color: white;
}

.platform-note {
    font-size: 12px;
    color: var(--muted);
    margin: 12px 0 0;
}

.hero-group-entry {
    width: min(100%, 380px);
    margin-top: 24px;
}

.hero-group-button {
    display: grid;
    grid-template-columns: 6px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 72px;
    padding: 13px 17px 13px 0;
    background: var(--ink);
    border: 1px solid var(--ink);
    color: white;
    transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.hero-group-mark {
    display: block;
    width: 6px;
    height: 100%;
    background: var(--red);
    transition: width .2s;
}

.hero-group-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.hero-group-kicker {
    color: var(--red);
    font: 700 9px/1.2 Syne, sans-serif;
    letter-spacing: .14em;
    white-space: nowrap;
}

.hero-group-copy strong {
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.hero-group-number {
    color: rgba(255, 255, 255, .62);
    font: 500 11px/1.2 Syne, sans-serif;
    white-space: nowrap;
}

.hero-group-button:hover {
    background: #1f1f1d;
    border-color: var(--ink);
    box-shadow: 7px 7px 0 var(--red);
    transform: translateY(-3px);
}

.hero-group-button:hover .hero-group-mark {
    width: 10px;
}

.hero-group-arrow {
    color: white;
    font: 400 26px/1 Syne, sans-serif;
    transition: color .2s, transform .2s;
}

.hero-group-button:hover .hero-group-arrow {
    color: var(--red);
    transform: translateX(4px);
}

.hero-group-button:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
}

.hero-visual {
    width: 100%;
    max-width: 760px;
    height: 670px;
    position: relative;
    justify-self: center;
    animation: rise .9s .12s both;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: var(--red);
    left: 50%;
    top: 50%;
    transform: translate(-42%, -48%);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(17, 17, 15, .25);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    z-index: 0;
}

.orbit-one {
    width: 590px;
    height: 590px;
    transform: translate(-50%, -50%);
}

.orbit-two {
    width: 700px;
    height: 340px;
    transform: translate(-50%, -50%) rotate(-19deg);
}

.hero-icon-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: min(430px, 68%);
    transform: translate(-50%, -50%) rotate(3deg);
}

.hero-icon-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20%;
    border: 1px solid rgba(17, 17, 15, .15);
    box-shadow: 18px 20px 0 var(--ink);
}

.icon-caption {
    position: absolute;
    left: 50%;
    bottom: -55px;
    max-width: calc(100vw - 40px);
    white-space: nowrap;
    font: 700 11px/1 Syne, sans-serif;
    letter-spacing: .12em;
    transform: translateX(-50%) rotate(-4deg);
}

.blue {
    color: var(--blue);
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.gold {
    color: var(--gold);
}

.marquee {
    overflow: hidden;
    border-block: 1px solid var(--ink);
    background: var(--ink);
    color: white;
    padding: 15px 0;
}

.marquee div {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    font: 700 14px Syne;
    animation: marquee 24s linear infinite;
}

.marquee i {
    color: var(--red);
    font-style: normal;
}

.intro {
    padding: 150px max(7vw, 24px);
    display: grid;
    grid-template-columns: .55fr 1.2fr .7fr;
    gap: 5vw;
    align-items: start;
}

.section-index {
    color: var(--red);
    margin: 10px 0;
}

h2 {
    font-size: clamp(40px, 5.3vw, 76px);
    line-height: 1.13;
    margin: 0;
    letter-spacing: 0;
}

.intro > p:last-child {
    color: var(--muted);
    line-height: 1.9;
    margin-top: 12px;
}

.feature-showcase {
    padding: 0 max(4vw, 18px) 80px;
}

.feature-panel {
    min-height: 650px;
    margin-bottom: 24px;
    padding: clamp(35px, 6vw, 90px);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 5vw;
    overflow: hidden;
    position: relative;
}

.feature-collection {
    background: #151513;
    color: white;
}

.feature-number {
    font: 800 70px Syne;
    color: var(--red);
}

.feature-copy h3 {
    font-size: clamp(36px, 4vw, 60px);
    line-height: 1.15;
    margin: 25px 0;
}

.feature-copy p {
    max-width: 460px;
    color: #aaa9a4;
    line-height: 1.9;
}

.feature-copy ul {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
}

.feature-copy li {
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding: 13px 0;
    font-size: 13px;
}

.feature-copy li::before {
    content: "+";
    color: var(--red);
    margin-right: 12px;
}

.catalog-art {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
    min-height: 430px;
}

.case {
    width: 185px;
    height: 310px;
    border: 6px solid rgba(255, 255, 255, .18);
    position: absolute;
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -18px 25px 45px rgba(0, 0, 0, .45);
}

.case span {
    font: 700 10px Syne;
}

.case b {
    font-size: 25px;
    writing-mode: vertical-rl;
    align-self: flex-end;
}

.case-1 {
    background: var(--red);
    transform: translateX(-145px) rotateY(20deg) rotateZ(-7deg);
    z-index: 1;
}

.case-2 {
    background: var(--blue);
    transform: translateY(-25px) rotateY(-3deg);
    z-index: 3;
}

.case-3 {
    background: var(--gold);
    transform: translateX(145px) rotateY(-20deg) rotateZ(7deg);
    z-index: 2;
}

.feature-data {
    background: #dedbd2;
}

.feature-data .feature-number {
    color: var(--blue);
}

.feature-data .feature-copy p {
    color: #68665f;
}

.data-art {
    display: grid;
    grid-template-columns: 1fr .65fr;
    grid-template-rows: auto 1fr;
    gap: 16px;
    align-self: center;
}

.big-number, .line-chart, .metric {
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 25px;
}

.big-number {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.big-number small {
    grid-column: 1/-1;
}

.big-number strong {
    font: 800 clamp(42px, 5vw, 75px) Syne;
}

.big-number span {
    color: var(--muted);
}

.line-chart svg {
    width: 100%;
    height: 180px;
    overflow: visible;
}

.line-chart path {
    fill: none;
    stroke: var(--blue);
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.line-chart path.area {
    stroke: none;
    fill: rgba(39, 105, 165, .12);
}

.line-chart > div {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
}

.metric {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric strong {
    font: 800 60px Syne;
    color: var(--green);
}

.metric i {
    height: 8px;
    background: linear-gradient(90deg, var(--green) 89%, #ddd 89%);
}

.privacy {
    padding: 130px max(7vw, 24px);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 9vw;
    background: white;
}

.privacy-mark {
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15%;
    transform: rotate(-5deg);
    position: relative;
}

.privacy-mark::after {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
}

.privacy-mark span {
    font: 700 12px Syne;
    letter-spacing: .2em;
}

.privacy-mark strong {
    font-size: clamp(27px, 3vw, 44px);
    line-height: 1.3;
    margin-top: 25px;
}

.privacy-copy > p:nth-of-type(2) {
    color: var(--muted);
    line-height: 1.9;
    max-width: 660px;
}

.privacy-points {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.privacy-points > div {
    border-top: 2px solid var(--ink);
    padding-top: 16px;
}

.privacy-points span {
    font: 700 11px Syne;
    color: var(--red);
}

.privacy-points strong {
    display: block;
    margin: 28px 0 8px;
}

.privacy-points p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.download-section {
    background: var(--red);
    color: white;
    min-height: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
}

.download-section > img {
    border-radius: 30px;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, .85);
    margin-bottom: 40px;
}

.download-section .section-index {
    color: var(--ink);
}

.download-section h2 {
    max-width: 850px;
}

.download-section > p:not(.section-index) {
    opacity: .75;
}

.download-section .download-actions {
    justify-content: center;
}

.download-section .qq-group-entry {
    margin-top: 30px;
}

.qq-group-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .72);
    font: 700 16px/1.2 "Noto Sans SC", sans-serif;
    transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}

.qq-group-button small {
    color: rgba(255, 255, 255, .72);
    font: 500 12px/1.2 Syne, sans-serif;
}

.qq-group-button:hover {
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .35);
    color: white;
    transform: translateY(-3px);
}

.qq-group-button:hover small {
    color: rgba(255, 255, 255, .72);
}

.store-light {
    color: var(--ink);
    background: white;
}

.store-outline {
    color: white;
    border-color: white;
}

.download-section .store-button:hover {
    box-shadow: 6px 6px 0 var(--ink);
}

footer {
    background: var(--ink);
    color: white;
    padding: 70px max(5vw, 24px) 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.footer-brand {
    font: 800 clamp(44px, 6vw, 88px) Syne;
}

.footer-brand + p {
    color: #92918c;
}

.footer-brand ~ div {
    grid-column: 2;
    grid-row: 1/3;
    justify-self: end;
    display: flex;
    gap: 28px;
    font-size: 13px;
}

.footer-brand ~ div a:hover {
    color: var(--red);
}

footer small {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 25px;
    color: #767570;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 25px);
    background: var(--ink);
    color: white;
    padding: 13px 20px;
    font-size: 13px;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    box-shadow: 4px 4px 0 var(--red);
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s, transform .7s;
}

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

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
}

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

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }

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

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

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

    .intro h2 {
        max-width: 760px;
    }

    .intro > p:last-child {
        max-width: 600px;
    }

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

    .feature-copy {
        max-width: 650px;
    }

    .feature-collection .catalog-art {
        min-height: 390px;
    }

    .privacy {
        grid-template-columns: minmax(280px, 420px) 1fr;
        gap: 5vw;
    }

    .privacy-points {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .privacy-points strong {
        margin-top: 12px;
    }

    .footer-brand ~ div {
        grid-row: auto;
    }
}

@media (max-width: 680px) {
    .site-header {
        height: 68px;
        padding: 0 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        position: absolute;
    }

    .brand {
        font-size: 18px;
        gap: 9px;
    }

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

    .site-header nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--ink);
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 16px 30px rgba(17, 17, 15, .08);
    }

    .site-header nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
    }

    .site-header nav .nav-download {
        justify-content: center;
        margin-top: 14px;
        border: 0;
    }

    .site-header nav .nav-qq {
        justify-content: center;
        margin-top: 14px;
        border: 1px solid var(--ink);
    }

    .site-header.menu-open nav {
        display: flex;
    }

    .menu-button {
        display: block;
        flex: none;
    }

    .hero {
        min-height: auto;
        padding: 108px 20px 44px;
        gap: 16px;
    }

    .eyebrow {
        font-size: 10px;
    }

    .hero h1 {
        margin: 34px 0 22px;
    }

    .hero-slogan {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.75;
    }

    .hero .download-actions {
        margin-top: 26px;
    }

    .platform-note {
        text-align: center;
    }

    .store-button {
        min-width: 0;
        flex: 1 1 0;
        padding: 8px 11px;
        gap: 8px;
    }

    .store-button svg {
        width: 24px;
        height: 24px;
    }

    .store-button span {
        font-size: 14px;
    }

    .hero-visual {
        width: 100%;
        max-width: 430px;
        height: min(100vw, 410px);
        margin: 8px auto 0;
        transform: none;
    }

    .hero-visual::before {
        width: min(74vw, 300px);
        height: min(74vw, 300px);
        transform: translate(-50%, -48%);
    }

    .orbit-one {
        width: min(88vw, 370px);
        height: min(88vw, 370px);
    }

    .orbit-two {
        width: min(92vw, 390px);
        height: min(56vw, 230px);
    }

    .hero-icon-wrap {
        width: min(64vw, 270px);
        transform: translate(-52%, -50%) rotate(3deg);
    }

    .hero-icon-wrap img {
        width: 100%;
        box-shadow: 10px 12px 0 var(--ink);
    }

    .icon-caption {
        bottom: -38px;
        font-size: 8px;
    }

    .marquee {
        padding: 13px 0;
    }

    .marquee div {
        gap: 24px;
        font-size: 12px;
    }

    .intro {
        padding: 84px 20px;
        gap: 20px;
    }

    h2 {
        font-size: 38px;
        line-height: 1.18;
    }

    .intro > p:last-child {
        font-size: 14px;
        margin: 2px 0 0;
    }

    .feature-showcase {
        padding: 0 8px 32px;
    }

    .feature-panel {
        padding: 40px 20px;
        min-height: 0;
        margin-bottom: 8px;
        gap: 34px;
    }

    .feature-number {
        font-size: 48px;
    }

    .feature-copy h3 {
        font-size: 34px;
        margin: 20px 0;
    }

    .feature-copy p {
        font-size: 14px;
    }

    .catalog-art {
        min-height: 285px;
        width: 100%;
        transform: none;
        margin: 0;
    }

    .case {
        width: 132px;
        height: 226px;
        border-width: 4px;
        padding: 17px 11px;
    }

    .case span {
        font-size: 8px;
    }

    .case b {
        font-size: 19px;
    }

    .case-1 {
        transform: translateX(-88px) rotateY(20deg) rotateZ(-7deg);
    }

    .case-2 {
        transform: translateY(-15px) rotateY(-3deg);
    }

    .case-3 {
        transform: translateX(88px) rotateY(-20deg) rotateZ(7deg);
    }

    .data-art {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .big-number, .line-chart, .metric {
        min-width: 0;
        padding: 20px;
    }

    .big-number {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .big-number strong {
        font-size: 42px;
        overflow-wrap: anywhere;
    }

    .line-chart {
        grid-column: auto;
    }

    .line-chart svg {
        height: 140px;
    }

    .metric {
        min-height: 155px;
    }

    .metric strong {
        font-size: 52px;
    }

    .privacy {
        padding: 82px 20px;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .privacy-mark {
        width: min(84vw, 340px);
        max-width: 340px;
        margin: auto;
    }

    .privacy-mark strong {
        font-size: 28px;
    }

    .privacy-copy {
        margin-top: 0;
    }

    .privacy-copy > p:nth-of-type(2) {
        font-size: 14px;
    }

    .privacy-points {
        margin-top: 42px;
    }

    .download-section {
        min-height: 620px;
        padding: 76px 20px calc(76px + env(safe-area-inset-bottom));
    }

    .download-section > img {
        width: 112px;
        height: 112px;
        border-radius: 23px;
        margin-bottom: 34px;
        box-shadow: 9px 9px 0 rgba(0, 0, 0, .85);
    }

    .download-section h2 {
        font-size: 38px;
    }

    .download-section > p:not(.section-index) {
        font-size: 14px;
    }

    .download-section .download-actions {
        width: min(100%, 380px);
    }

    .hero-group-entry {
        width: min(100%, 380px);
        margin-top: 20px;
    }

    .hero-group-button {
        grid-template-columns: 5px minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 68px;
        padding-right: 14px;
    }

    .download-section .qq-group-entry {
        margin-top: 26px;
    }

    .qq-group-button {
        width: min(100%, 380px);
    }

    footer {
        padding: 58px 20px calc(28px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        font-size: 43px;
    }

    .footer-brand + p {
        margin: -15px 0 8px;
    }

    .footer-brand ~ div {
        grid-column: 1;
        justify-self: start;
        flex-wrap: wrap;
        gap: 18px 26px;
    }

    footer small {
        line-height: 1.6;
    }

    .toast {
        width: calc(100% - 40px);
        bottom: calc(20px + env(safe-area-inset-bottom));
        text-align: center;
    }
}

@media (max-width: 380px) {
    .hero {
        padding-inline: 16px;
    }

    .hero-slogan {
        font-size: 29px;
    }

    .download-actions {
        flex-direction: column;
    }

    .store-button {
        width: 100%;
        flex-basis: 58px;
        justify-content: center;
    }

    .platform-note {
        text-align: left;
    }

    .intro, .privacy {
        padding-inline: 16px;
    }

    h2, .download-section h2 {
        font-size: 34px;
    }

    .feature-copy h3 {
        font-size: 31px;
    }

    .case {
        width: 116px;
        height: 204px;
    }

    .case-1 {
        transform: translateX(-72px) rotateY(20deg) rotateZ(-7deg);
    }

    .case-3 {
        transform: translateX(72px) rotateY(-20deg) rotateZ(7deg);
    }

    .big-number strong {
        font-size: 37px;
    }
}

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

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
