* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #383E47;
}

body {
    font-family: 'PT Sans', 'PT Sans Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #383E47;
    color: #fff;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 clamp(24px, 6.5vw, 40px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* ========================
   Page 1 — Hero
   ======================== */

.page-1 {
    padding: clamp(40px, 12.8vw, 100px) 0 clamp(22px, 10.3vw, 80px);
    min-height: auto;
}

.page-1__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-1__heading {
    font-size: clamp(20px, 9.5vw, 74px);
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.highlight {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.highlight__bg {
    position: absolute;
    top: 10%;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 2px);
    z-index: 0;
    display: block;
}

.highlight__text {
    position: relative;
    z-index: 1;
}

.highlight--nichego .highlight__text {
    font-weight: 700;
}

.page-1__subtitle {
    margin-top: clamp(14px, 4.9vw, 38px);
    font-size: clamp(16px, 5.8vw, 45px);
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    align-self: center;
    white-space: nowrap;
}

.highlight--nichego {
    margin-top: clamp(2px, 0.8vw, 6px);
    font-size: clamp(18px, 6.7vw, 52px);
}

.highlight--nichego .highlight__bg {
    top: 8%;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 4px);
}

.page-1__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: clamp(40px, 16.7vw, 130px);
    position: relative;
}

.page-1__cta {
    font-size: clamp(14px, 5.5vw, 43px);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.page-1__arrow {
    width: clamp(120px, 46.2vw, 360px);
    height: auto;
    flex-shrink: 1;
    transform: scaleY(-1);
    margin-bottom: clamp(-70px, -9vw, -20px);
    margin-right: clamp(0px, 12.8vw, 100px);
    animation: arrow-wobble 3s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes arrow-wobble {

    0%,
    100% {
        transform: scaleY(-1) rotate(-0.5deg);
    }

    50% {
        transform: scaleY(-1) rotate(0.5deg);
    }
}

/* ========================
   Page 2 — Text pages
   ======================== */

.page-2 {
    padding: clamp(18px, 12.8vw, 20px) 0 clamp(22px, 10.3vw, 20px);
    min-height: auto;
}

@media (max-width: 768px) {
    .page-2.page-3 {
        padding-top: 18px;
    }
}

.page-2__content {
    display: flex;
    flex-direction: column;
}

.page-2__text {
    font-size: clamp(12px, 4.9vw, 38px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    text-align: left;
}

.page-2__text strong {
    font-weight: 700;
}

.page-2__text em {
    font-style: italic;
    font-weight: 700;
}

.page-2__text+.page-2__text {
    margin-top: clamp(10px, 5.1vw, 40px);
}

.page-2__blob-wrap {
    position: relative;
    margin-top: clamp(10px, 4.6vw, 36px);
    margin-bottom: clamp(10px, 4.6vw, 36px);
    margin-left: clamp(-60px, -7.7vw, -20px);
}

.page-2__blob {
    width: clamp(160px, 64.1vw, 500px);
    height: auto;
    display: block;
}

.page-2__blob-text {
    position: absolute;
    top: 50%;
    left: clamp(16px, 7.7vw, 60px);
    transform: translateY(-50%);
    font-size: clamp(12px, 4.9vw, 38px);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    line-height: 1.2;
    width: 60%;
    padding: clamp(4px, 1.3vw, 10px) 0;
}

.page-2__blob-wrap+.page-2__text {
    margin-top: 0;
}

.page-2__arrow-wrap {
    display: flex;
    justify-content: center;
    margin: clamp(20px, 5.1vw, 40px) 0;
}

.page-2__arrow {
    width: clamp(40px, 14.1vw, 110px);
    height: auto;
}

/* ========================
   Page 4 — Red background
   ======================== */

.page-4 {
    background: #CC3319;
    min-height: auto;
    padding: clamp(14px, 7.2vw, 56px) 0 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
}

.page-4__inner {
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(24px, 6.5vw, 40px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page-4__box {
    border: clamp(1px, 0.4vw, 3px) solid #fff;
    padding: clamp(10px, 5.1vw, 40px) clamp(8px, 4.1vw, 32px);
    text-align: center;
}

.page-4__box-text {
    font-size: clamp(10px, 4.4vw, 34px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    color: #fff;
}

.page-4__content {
    padding: clamp(10px, 5.1vw, 40px) 0;
    text-align: center;
}

.page-4__text {
    text-align: center;
    font-size: clamp(10px, 4.4vw, 34px);
}

.page-4__text+.page-4__text {
    margin-top: clamp(10px, 5.1vw, 40px);
}

.page-4__people {
    width: 100%;
    height: auto;
    display: block;
    margin-top: auto;
}

/* ========================
   Page 5 — Warning
   ======================== */

.page-5 {
    padding-top: clamp(40px, 19.2vw, 150px);
    padding-bottom: clamp(22px, 10.3vw, 80px);
}

.page-5__warn {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(-30px, -3.8vw, -10px);
    position: relative;
    z-index: 1;
}

.page-5__warn-img {
    width: clamp(40px, 17.9vw, 140px);
    height: auto;
    transform-origin: center bottom;
    animation: warn-wobble 2.5s ease-in-out infinite;
}

@keyframes warn-wobble {

    0%,
    100% {
        transform: rotate(-1deg);
    }

    50% {
        transform: rotate(1deg);
    }
}

.page-5__box-text-second {
    margin-top: clamp(10px, 4.6vw, 36px);
}

/* ========================
   Page 6 — Step-by-step instruction
   ======================== */

.page-6 {
    padding: clamp(28px, 12.8vw, 100px) 0 clamp(22px, 10.3vw, 80px);
    min-height: auto;
}

.page-6__heading {
    font-size: clamp(16px, 6.7vw, 52px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: clamp(8px, 3.6vw, 28px);
}

.highlight--heading .highlight__bg {
    top: auto;
    bottom: 2px;
    left: -4px;
    width: calc(100% + 8px);
    height: clamp(8px, 2.6vw, 20px);
}

.page-6__link {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.highlight--link .highlight__bg {
    top: auto;
    bottom: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: clamp(8px, 2.6vw, 20px);
}

.page-6__text {
    margin-bottom: clamp(8px, 3.6vw, 28px);
}

.page-6__text-small {
    font-size: clamp(10px, 4.1vw, 32px);
}

.page-6__body {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.page-6__text-col {
    flex: 0 0 48%;
    position: relative;
    z-index: 1;
}

.highlight--btn .highlight__bg {
    top: 5%;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 6px);
}

.page-6__screenshot-wrap {
    flex: 0 0 52%;
    position: relative;
}

.page-6__screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(4px, 1.5vw, 12px);
    box-shadow: 0 clamp(1px, 0.5vw, 4px) clamp(8px, 3.1vw, 24px) rgba(0, 0, 0, 0.3);
}

.page-6__screenshot-arrow {
    position: absolute;
    bottom: 30%;
    left: -20%;
    width: 35%;
    height: auto;
    transform: scaleX(-1) scaleY(-1) rotate(100deg);
    z-index: 2;
}

.page-6__bottom {
    margin-top: clamp(4px, 2.1vw, 16px);
}

.page-6__number-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
}

.page-6__number {
    position: relative;
    width: clamp(40px, 19.6vw, 153px);
    height: clamp(40px, 19.6vw, 153px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(-220px, -28.2vw, -60px);
}

.page-6__number-blob {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-6__number-text {
    position: relative;
    z-index: 1;
    font-size: clamp(24px, 12.7vw, 99px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.page-6__arrow-wrap {
    justify-content: flex-start;
}

/* ========================
   Page 7 — Step 2
   ======================== */

.page-7 {
    padding: clamp(28px, 12.8vw, 100px) 0 clamp(22px, 10.3vw, 80px);
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.page-7__body {
    display: flex;
    align-items: flex-start;
    gap: clamp(6px, 3.1vw, 24px);
    flex: 1;
    position: relative;
}

.page-7__screenshots-col {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 2vw, 16px);
}

.page-7__screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(4px, 1.5vw, 12px);
    box-shadow: 0 clamp(1px, 0.5vw, 4px) clamp(8px, 3.1vw, 24px) rgba(0, 0, 0, 0.3);
}

.page-7__screenshot-small {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(2px, 1vw, 8px);
    box-shadow: 0 clamp(1px, 0.5vw, 4px) clamp(8px, 3.1vw, 24px) rgba(0, 0, 0, 0.3);
}

.page-7__text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-7__number {
    margin-top: 0;
    align-self: center;
    margin-bottom: clamp(6px, 3.1vw, 24px);
}

.page-7__text {
    font-size: clamp(8px, 3.6vw, 28px);
    line-height: 1.2;
}

.highlight--red-bg .highlight__bg {
    top: 5%;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 4px);
}

.page-7__arrow-wrap {
    justify-content: flex-end;
    margin-top: auto;
    align-self: flex-end;
}

/* ========================
   Page 8 — Step 3
   ======================== */

.page-8 {
    padding: clamp(28px, 12.8vw, 100px) 0 clamp(22px, 10.3vw, 80px);
    min-height: auto;
}

.page-8__header {
    display: flex;
    align-items: center;
    gap: clamp(6px, 3.1vw, 24px);
    margin-bottom: clamp(10px, 5.1vw, 40px);
}

.page-8__number {
    margin-top: 0;
    flex-shrink: 0;
}

.page-8__heading-text {
    font-weight: 700;
}

.page-8__list {
    list-style: none;
    padding-left: clamp(10px, 4.6vw, 36px);
    margin-bottom: clamp(10px, 5.1vw, 40px);
}

.page-8__list-item {
    position: relative;
    padding-left: clamp(10px, 4.1vw, 32px);
    margin-bottom: clamp(10px, 5.1vw, 40px);
}

.page-8__list-item:last-child {
    margin-bottom: 0;
}

.page-8__list-item::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    font-size: clamp(12px, 4.9vw, 38px);
    line-height: 1.15;
}

.page-8__text {
    margin-top: clamp(10px, 5.1vw, 40px);
}

.page-8__bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(14px, 7.2vw, 56px);
}

.page-8__bottom-text {
    font-size: clamp(10px, 4.4vw, 34px);
    font-weight: 700;
    color: #fff;
    text-align: right;
    line-height: 1.2;
}

.page-8__bottom-arrow {
    width: clamp(28px, 14.1vw, 110px);
    height: auto;
    vertical-align: middle;
    margin: 0 clamp(2px, 1vw, 8px);
}

/* ========================
   Page 9 — Screenshot
   ======================== */

.page-9 {
    padding: clamp(28px, 12.8vw, 100px) 0 clamp(22px, 10.3vw, 80px);
    min-height: auto;
}

.page-9__screenshot-wrap {
    display: flex;
    justify-content: center;
}

.page-9__screenshot {
    width: 50%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: clamp(4px, 1.5vw, 12px);
    box-shadow: 0 clamp(1px, 0.5vw, 4px) clamp(8px, 3.1vw, 24px) rgba(0, 0, 0, 0.3);
}

.page-9__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 3.6vw, 28px);
    margin: clamp(20px, 5.1vw, 40px) 0;
}

.page-9__text {
    text-align: center;
}

.page-9__arrow {
    width: clamp(40px, 14.1vw, 110px);
    height: auto;
}

/* ========================
   Page 10 — Final / Red
   ======================== */

.page-10 {
    background: #CC3319;
    min-height: auto;
    padding: clamp(28px, 12.8vw, 100px) 0 clamp(22px, 10.3vw, 80px);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
}

.page-10>*:not(.page-10__noise):not(.page-10__final) {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(24px, 6.5vw, 40px);
    padding-right: clamp(24px, 6.5vw, 40px);
}

.page-10__noise {
    position: absolute;
    inset: -100%;
    width: 300%;
    height: 300%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    animation: grain-shift 0.4s steps(4) infinite;
}

@keyframes grain-shift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-60px, 40px);
    }

    50% {
        transform: translate(35px, -70px);
    }

    75% {
        transform: translate(-45px, -25px);
    }

    100% {
        transform: translate(55px, 60px);
    }
}

.page-10__heading {
    font-size: clamp(16px, 6.7vw, 52px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    color: #fff;
    margin-bottom: clamp(10px, 4.6vw, 36px);
}

.page-10__text {
    margin-bottom: clamp(10px, 5.1vw, 40px);
}

.page-10__table-wrap {
    margin-bottom: clamp(18px, 8.2vw, 64px);
}

.page-10__table {
    width: 100%;
    height: auto;
    display: block;
    border-radius: clamp(2px, 1vw, 8px);
    box-shadow: 0 clamp(1px, 0.5vw, 4px) clamp(8px, 3.1vw, 24px) rgba(0, 0, 0, 0.2);
}

.page-10__final {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(24px, 6.5vw, 40px);
    padding-right: clamp(24px, 6.5vw, 40px);
}

.page-10__heart {
    font-size: clamp(48px, 32.1vw, 250px);
    line-height: 1;
    margin-left: clamp(-50px, -6.4vw, -16px);
    flex-shrink: 0;
    opacity: 0.55;
}

.page-10__final-text {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-left: clamp(-70px, -9vw, -20px);
    padding-top: clamp(4px, 2.1vw, 16px);
}
