:root {
    --background: #fff9fb;
    --background-soft: #fff2f7;
    --surface: #ffffff;

    --text-main: #2f2533;
    --text-soft: #776b7b;
    --text-light: #9b909e;

    --pink: #f46f9f;
    --pink-dark: #dc4f84;
    --pink-soft: #ffd9e7;

    --purple: #9a78e8;
    --purple-soft: #e8dffc;

    --blue: #8cc7e8;
    --blue-soft: #dff2fb;

    --peach: #f5b88e;
    --yellow: #f5d47a;

    --border: rgba(57, 42, 63, 0.08);

    --shadow-small:
        0 12px 35px rgba(87, 54, 80, 0.08);

    --shadow-medium:
        0 22px 60px rgba(87, 54, 80, 0.12);

    --shadow-large:
        0 42px 110px rgba(87, 54, 80, 0.17);

    --page-width: 1220px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        Inter,
        "Segoe UI",
        sans-serif;
    color: var(--text-main);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    min-height: 66px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 249, 251, 0.74);
    backdrop-filter: saturate(180%) blur(22px);
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.site-header.scrolled {
    border-color: var(--border);
    background: rgba(255, 252, 253, 0.92);
}

.header-inner {
    width: min(calc(100% - 40px), var(--page-width));
    min-height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand-name {
    font-size: 0.98rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.desktop-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 31px;
}

.desktop-navigation a {
    color: #5d5261;
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.desktop-navigation a:hover {
    color: var(--pink-dark);
}

.header-button {
    min-height: 35px;
    margin-left: 28px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--pink);
    font-size: 0.79rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.header-button:hover {
    background: var(--pink-dark);
    transform: translateY(-1px);
}

.menu-button,
.mobile-navigation {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    padding:
        140px
        max(24px, calc((100% - var(--page-width)) / 2))
        100px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.95fr);
    align-items: center;
    gap: clamp(55px, 8vw, 115px);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(246, 183, 210, 0.34),
            transparent 28%
        ),
        radial-gradient(
            circle at 87% 25%,
            rgba(189, 170, 238, 0.3),
            transparent 29%
        ),
        linear-gradient(180deg, #fffdfd 0%, #fff5f9 100%);
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 5;
}

.app-label {
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 550;
}

.app-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    box-shadow: var(--shadow-small);
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(4.4rem, 7.8vw, 7.6rem);
    font-weight: 700;
    line-height: 0.91;
    letter-spacing: -0.072em;
}

.hero h1 span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            110deg,
            var(--pink-dark),
            var(--purple),
            #aa85df
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 625px;
    margin: 29px 0 34px;
    color: var(--text-soft);
    font-size: clamp(1.04rem, 1.7vw, 1.24rem);
    line-height: 1.64;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.primary-button {
    min-height: 53px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );
    box-shadow: 0 14px 35px rgba(220, 79, 132, 0.24);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(220, 79, 132, 0.31);
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pink-dark);
    font-size: 0.98rem;
    font-weight: 550;
    text-decoration: none;
}

.text-button span {
    transition: transform 0.2s ease;
}

.text-button:hover span {
    transform: translateY(3px);
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-trust span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-soft);
    font-size: 0.79rem;
    font-weight: 540;
    backdrop-filter: blur(12px);
}

.hero-visual {
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: absolute;
    z-index: 5;
    width: min(100%, 290px);
    padding: 9px;
    border-radius: 50px;
    background: #242025;
    box-shadow: var(--shadow-large);
    transform: translateX(38px) rotate(5deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone img {
    width: 100%;
    border-radius: 42px;
}

.phone-camera {
    position: absolute;
    top: 16px;
    left: 50%;
    z-index: 7;
    width: 82px;
    height: 23px;
    border-radius: 999px;
    background: #242025;
    transform: translateX(-50%);
}

.photo-card {
    position: absolute;
    left: 0;
    z-index: 3;
    width: 330px;
    overflow: hidden;
    border: 9px solid #ffffff;
    border-radius: 32px;
    box-shadow: var(--shadow-large);
    transform: translate(-25px, 35px) rotate(-8deg);
    animation: photoFloat 7s ease-in-out infinite;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    color: #ffffff;
    background: rgba(49, 37, 53, 0.35);
    backdrop-filter: blur(15px);
}

.photo-overlay span {
    font-size: 0.76rem;
}

.photo-overlay strong {
    margin-top: 4px;
    font-size: 1.22rem;
}

.love-note {
    position: absolute;
    z-index: 7;
    min-width: 215px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(18px);
}

.note-top {
    top: 13%;
    right: -3%;
    animation: noteFloat 5.5s ease-in-out infinite;
}

.note-bottom {
    right: 2%;
    bottom: 12%;
    animation: noteFloat 6s ease-in-out infinite -2.5s;
}

.note-symbol {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );
}

.love-note div {
    display: flex;
    flex-direction: column;
}

.love-note strong {
    font-size: 0.83rem;
}

.love-note small {
    max-width: 140px;
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 0.69rem;
    line-height: 1.3;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.26;
}

.orb-one {
    top: 13%;
    right: 2%;
    width: 420px;
    height: 420px;
    background: #e7a8c3;
}

.orb-two {
    right: 22%;
    bottom: 1%;
    width: 340px;
    height: 340px;
    background: #bca8ec;
}

.floating-heart {
    position: absolute;
    z-index: 2;
    color: rgba(244, 111, 159, 0.18);
    font-size: 5rem;
    animation: heartFloat 7s ease-in-out infinite;
}

.heart-one {
    top: 18%;
    left: 4%;
    transform: rotate(-14deg);
}

.heart-two {
    right: 8%;
    bottom: 8%;
    font-size: 3.7rem;
    animation-delay: -3s;
}

/* STATEMENT */

.statement-section {
    padding: 135px 24px;
    background: #ffffff;
}

.statement-section p {
    width: min(100%, 1020px);
    margin: 0 auto;
    color: #b2a8b5;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 650;
    line-height: 1.04;
    letter-spacing: -0.06em;
    text-align: center;
}

.statement-section strong {
    color: var(--text-main);
    font-weight: inherit;
}

/* STORY */

.story-section {
    padding: 130px 24px;
    background: var(--background);
}

.story-copy {
    width: min(100%, 820px);
    margin: 0 auto 70px;
    text-align: center;
}

.eyebrow {
    margin-bottom: 17px;
    color: var(--pink-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-copy h2,
.section-heading h2,
.privacy-card h2,
.download-content h2 {
    font-size: clamp(3rem, 6vw, 5.7rem);
    font-weight: 680;
    line-height: 1;
    letter-spacing: -0.064em;
}

.story-copy > p:last-child {
    max-width: 690px;
    margin: 25px auto 0;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.7;
}

.story-cards {
    width: min(100%, var(--page-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.story-card {
    min-height: 340px;
    padding: 36px;
    border-radius: 32px;
}

.story-card-pink {
    background: linear-gradient(145deg, #ffe3ed, #f8d8e8);
}

.story-card-purple {
    background: linear-gradient(145deg, #ebe4fb, #dfd7f6);
}

.story-card-blue {
    background: linear-gradient(145deg, #e3f3fa, #d8edf6);
}

.story-icon {
    width: 63px;
    height: 63px;
    margin-bottom: 50px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-small);
    font-size: 1.7rem;
}

.story-card h3 {
    margin-bottom: 13px;
    font-size: 1.48rem;
    letter-spacing: -0.035em;
}

.story-card p {
    color: #655a69;
    line-height: 1.66;
}

/* FEATURES */

.features-section {
    padding: 140px 24px;
    background: #ffffff;
}

.section-heading {
    width: min(100%, 920px);
    margin: 0 auto 100px;
    text-align: center;
}

.section-heading h2 span {
    display: block;
    color: #aaa0ad;
}

.feature-showcase {
    width: min(100%, var(--page-width));
    min-height: 690px;
    margin: 0 auto 34px;
    padding: clamp(45px, 7vw, 90px);
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(410px, 1.22fr);
    align-items: center;
    gap: clamp(55px, 8vw, 110px);
    overflow: hidden;
    border-radius: 42px;
}

.feature-memories {
    background: linear-gradient(145deg, #fff0f5, #f1e7fb);
}

.feature-questions {
    background: linear-gradient(145deg, #f2ebfc, #e9e4fa);
}

.feature-activities {
    background: linear-gradient(145deg, #fff1e6, #ffe5ec);
}

.feature-questions .feature-copy,
.feature-activities .feature-copy {
    order: 2;
}

.feature-questions .feature-visual,
.feature-activities .feature-visual {
    order: 1;
}

.feature-number {
    display: block;
    margin-bottom: 25px;
    color: var(--pink-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.feature-copy h3 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 670;
    line-height: 1.02;
    letter-spacing: -0.058em;
}

.feature-copy > p {
    max-width: 520px;
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 1.07rem;
    line-height: 1.68;
}

.feature-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.feature-tags span {
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #665b69;
    font-size: 0.8rem;
    font-weight: 550;
}

.feature-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memory-card {
    position: relative;
    z-index: 3;
    width: min(100%, 310px);
    padding: 9px;
    border-radius: 48px;
    background: #242025;
    box-shadow: var(--shadow-large);
    transform: rotate(5deg);
}

.memory-card img {
    width: 100%;
    border-radius: 40px;
}

.memory-date {
    position: absolute;
    left: 2%;
    bottom: 14%;
    z-index: 5;
    min-width: 175px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(16px);
}

.memory-date strong {
    font-size: 1.2rem;
}

.memory-date span {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 0.79rem;
}

.question-card {
    width: min(100%, 500px);
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(20px);
    transform: rotate(-3deg);
}

.question-label {
    color: var(--purple);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.question-card p {
    margin: 55px 0 75px;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 640;
    line-height: 1.16;
    letter-spacing: -0.045em;
}

.question-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.question-actions strong {
    padding: 12px 17px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--purple);
    font-weight: 600;
}

.activity-stack {
    position: relative;
    width: min(100%, 430px);
    min-height: 460px;
}

.activity-card {
    position: absolute;
    right: 0;
    left: 0;
    min-height: 250px;
    padding: 34px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.73);
    box-shadow: var(--shadow-large);
    backdrop-filter: blur(16px);
}

.activity-card span {
    font-size: 2.7rem;
}

.activity-card strong {
    margin-top: auto;
    font-size: 1.65rem;
    letter-spacing: -0.04em;
}

.activity-card small {
    margin-top: 7px;
    color: var(--text-soft);
}

.activity-back {
    top: 0;
    transform: translateY(0) scale(0.87) rotate(-8deg);
    opacity: 0.48;
}

.activity-middle {
    top: 55px;
    transform: scale(0.94) rotate(5deg);
    opacity: 0.72;
}

.activity-front {
    top: 115px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.89);
}

/* PRIVACY */

.privacy-section {
    padding: 110px 24px;
    background: var(--background-soft);
}

.privacy-card {
    width: min(100%, var(--page-width));
    margin: 0 auto;
    padding: clamp(50px, 8vw, 100px);
    border-radius: 42px;
    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(255, 255, 255, 0.9),
            transparent 35%
        ),
        linear-gradient(145deg, #e7e3f7, #edf4f8);
    text-align: center;
}

.privacy-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-small);
    font-size: 2rem;
}

.privacy-card > p:not(.eyebrow) {
    max-width: 680px;
    margin: 25px auto 0;
    color: var(--text-soft);
    font-size: 1.06rem;
    line-height: 1.7;
}

.privacy-points {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.privacy-points span {
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #635969;
    font-size: 0.82rem;
    font-weight: 550;
}

/* SCREENSHOTS */

.screenshots-section {
    position: relative;
    width: min(
        calc(100% - 40px),
        1180px
    );
    margin: 0 auto;
    padding: 130px 0;
    overflow: hidden;
}

.screenshots-heading {
    max-width: 850px;
    margin: 0 auto 75px;
    text-align: center;
}

.screenshots-heading h2 {
    max-width: 850px;
    margin: 16px auto 0;
}

.screenshots-heading .section-description {
    max-width: 650px;
    margin: 24px auto 0;
    color: #81747f;
    font-size: 1rem;
    line-height: 1.75;
}

/* DVA VYCENTROVANÉ SCREENSHOTY */

.screenshots-showcase {
    position: relative;
    width: min(100%, 930px);
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    align-items: start;
    justify-content: center;
    gap: clamp(35px, 6vw, 80px);
}

/* JEMNÉ POZADÍ ZA TELEFONY */

.screenshots-showcase::before {
    content: "";
    position: absolute;
    top: 11%;
    left: 50%;
    z-index: -2;
    width: 82%;
    height: 72%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(218, 122, 187, 0.16),
            rgba(157, 121, 219, 0.08) 48%,
            transparent 73%
        );
    filter: blur(40px);
    transform: translateX(-50%);
    pointer-events: none;
}

/* KARTA */

.screenshot-card {
    position: relative;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 0;
    outline: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.screenshot-card-left {
    transform: translateY(38px);
}

.screenshot-card-right {
    transform: translateY(-18px);
}

/* GLOW POD SCREENSHOTEM */

.screenshot-glow {
    position: absolute;
    top: 13%;
    left: 50%;
    z-index: -1;
    width: 82%;
    height: 74%;
    border-radius: 46%;
    background:
        radial-gradient(
            circle,
            rgba(230, 139, 194, 0.25),
            rgba(169, 129, 220, 0.1) 54%,
            transparent 74%
        );
    filter: blur(36px);
    opacity: 0.75;
    transform: translateX(-50%);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* RÁMEČEK TELEFONU */

.screenshot-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1080 / 1855;
    padding: 8px;
    display: block;
    overflow: hidden;
    border:
        1px solid rgba(255, 255, 255, 0.78);
    border-radius: clamp(28px, 3.2vw, 42px);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(245, 231, 242, 0.7)
        );
    box-shadow:
        0 35px 80px rgba(83, 49, 78, 0.18),
        0 10px 30px rgba(83, 49, 78, 0.1),
        inset 0 0 0 1px rgba(138, 91, 126, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.screenshot-frame::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    z-index: 3;
    width: 28%;
    height: 22px;
    border-radius: 999px;
    background: rgba(19, 15, 20, 0.92);
    transform: translateX(-50%);
    pointer-events: none;
}

.screenshot-frame img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: calc(
        clamp(28px, 3.2vw, 42px) - 8px
    );
    object-fit: cover;
    object-position: top center;
}

/* POPISEK */

.screenshot-caption {
    width: 100%;
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.screenshot-caption small {
    color: #b15a97;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.screenshot-caption strong {
    margin-top: 6px;
    color: #4d414b;
    font-size: 0.95rem;
    font-weight: 750;
}

/* HOVER */

.screenshot-card:hover .screenshot-frame {
    box-shadow:
        0 45px 95px rgba(83, 49, 78, 0.23),
        0 14px 35px rgba(83, 49, 78, 0.13),
        inset 0 0 0 1px rgba(138, 91, 126, 0.08);
    transform:
        translateY(-10px)
        scale(1.015);
}

.screenshot-card:hover .screenshot-glow {
    opacity: 1;
    transform:
        translateX(-50%)
        scale(1.08);
}

.screenshot-card:focus-visible .screenshot-frame {
    outline: 3px solid rgba(177, 90, 151, 0.45);
    outline-offset: 6px;
}

/* TABLET */

@media (max-width: 850px) {
    .screenshots-section {
        padding: 100px 0;
    }

    .screenshots-showcase {
        width: min(100%, 750px);
        gap: 30px;
    }

    .screenshot-card-left {
        transform: translateY(25px);
    }

    .screenshot-card-right {
        transform: translateY(-10px);
    }
}

/* MOBIL */

@media (max-width: 620px) {
    .screenshots-section {
        width: calc(100% - 28px);
        padding: 85px 0;
    }

    .screenshots-heading {
        margin-bottom: 50px;
        text-align: left;
    }

    .screenshots-heading h2,
    .screenshots-heading .section-description {
        margin-left: 0;
        text-align: left;
    }

    .screenshots-showcase {
        width: min(100%, 390px);
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .screenshot-card {
        width: min(88%, 350px);
    }

    .screenshot-card-left,
    .screenshot-card-right {
        transform: none;
    }

    .screenshot-frame {
        border-radius: 34px;
    }

    .screenshot-frame img {
        border-radius: 26px;
    }

    .screenshot-caption {
        margin-top: 20px;
    }
}

/* DOWNLOAD */

.download-section {
    position: relative;
    padding: 145px 24px;
    overflow: hidden;
    background:
        linear-gradient(
            160deg,
            #fff1f6,
            #ece5fa
        );
}

.download-content {
    position: relative;
    z-index: 4;
    width: min(100%, 820px);
    margin: 0 auto;
    text-align: center;
}

.download-icon {
    width: 105px;
    height: 105px;
    margin: 0 auto 29px;
    border-radius: 28px;
    box-shadow: var(--shadow-large);
}

.download-content h2 span {
    display: block;
    color: var(--pink-dark);
}

.download-content > p:not(.eyebrow) {
    max-width: 650px;
    margin: 25px auto 32px;
    color: var(--text-soft);
    font-size: 1.07rem;
    line-height: 1.68;
}

.google-play-button {
    min-height: 65px;
    padding: 9px 22px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 18px;
    color: #ffffff;
    background: #231f24;
    box-shadow: 0 17px 40px rgba(43, 34, 45, 0.25);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.google-play-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 23px 50px rgba(43, 34, 45, 0.32);
}

.play-symbol {
    font-size: 1.8rem;
}

.google-play-button > span:last-child {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.google-play-button small {
    font-size: 0.68rem;
}

.google-play-button strong {
    margin-top: 2px;
    font-size: 1.28rem;
}

.download-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.38;
}

.glow-one {
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: #f3a7c4;
}

.glow-two {
    right: -120px;
    bottom: -140px;
    width: 430px;
    height: 430px;
    background: #b7a5ef;
}

/* FOOTER */

.site-footer {
    padding: 52px max(24px, calc((100% - var(--page-width)) / 2));
    background: #fffafb;
}

.footer-top {
    padding-bottom: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.footer-brand img {
    width: 49px;
    height: 49px;
    object-fit: contain;
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 0.96rem;
}

.footer-brand span {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 23px;
}

.footer-navigation a {
    color: var(--text-soft);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-navigation a:hover,
.footer-bottom a:hover {
    color: var(--pink-dark);
}

.footer-bottom {
    padding-top: 27px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.76rem;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

/* MODAL */

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    padding: 25px;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    background: rgba(40, 29, 42, 0.88);
    opacity: 0;
    backdrop-filter: blur(15px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.image-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.image-modal img {
    max-width: min(420px, 90vw);
    max-height: 90vh;
    border-radius: 30px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
}

.modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.9rem;
    cursor: pointer;
}

/* ANIMATIONS */

@keyframes phoneFloat {
    0%,
    100% {
        transform: translateX(38px) translateY(0) rotate(5deg);
    }

    50% {
        transform: translateX(38px) translateY(-14px) rotate(3deg);
    }
}

@keyframes photoFloat {
    0%,
    100% {
        transform: translate(-25px, 35px) rotate(-8deg);
    }

    50% {
        transform: translate(-25px, 20px) rotate(-6deg);
    }
}

@keyframes noteFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

@keyframes heartFloat {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -18px;
    }
}

/* TABLET */

@media (max-width: 1000px) {
    .desktop-navigation,
    .header-button {
        display: none;
    }

    .menu-button {
        width: 42px;
        height: 42px;
        margin-left: auto;
        display: block;
        border: 0;
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 18px;
        height: 1.5px;
        margin: 5px auto;
        background: var(--text-main);
        transition: transform 0.25s ease;
    }

    .menu-button.active span:first-child {
        transform: translateY(3.25px) rotate(45deg);
    }

    .menu-button.active span:last-child {
        transform: translateY(-3.25px) rotate(-45deg);
    }

    .mobile-navigation {
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        padding: 18px 20px 24px;
        display: grid;
        gap: 3px;
        visibility: hidden;
        border-bottom: 1px solid var(--border);
        background: rgba(255, 252, 253, 0.98);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .mobile-navigation.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-navigation a {
        padding: 12px 0;
        color: var(--text-main);
        font-size: 1.04rem;
        font-weight: 550;
        text-decoration: none;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-label,
    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-visual {
        width: min(100%, 650px);
        min-height: 650px;
        margin: 0 auto;
    }

    .story-cards {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-height: auto;
    }

    .story-icon {
        margin-bottom: 30px;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-questions .feature-copy,
    .feature-activities .feature-copy,
    .feature-questions .feature-visual,
    .feature-activities .feature-visual {
        order: initial;
    }

    .feature-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .feature-tags {
        justify-content: center;
    }

    .screenshots-track {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }
}

/* MOBILE */

@media (max-width: 650px) {
    .header-inner {
        width: calc(100% - 28px);
    }

    .brand-logo {
        width: 31px;
        height: 31px;
    }

    .hero {
        padding: 118px 18px 75px;
    }

    .app-label {
        align-items: center;
        flex-direction: column;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 18vw, 5.2rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 19px;
    }

    .primary-button {
        width: 100%;
    }

    .text-button {
        justify-content: center;
    }

    .hero-visual {
        min-height: 510px;
    }

    .phone {
        width: 215px;
        transform: translateX(35px) rotate(5deg);
    }

    .photo-card {
        left: 5px;
        width: 230px;
        transform: translate(-20px, 35px) rotate(-8deg);
    }

    .love-note {
        min-width: 170px;
        padding: 12px 14px;
    }

    .note-top {
        right: -10px;
    }

    .note-bottom {
        right: -10px;
    }

    .love-note small {
        max-width: 105px;
    }

    .statement-section {
        padding: 90px 18px;
    }

    .statement-section p {
        font-size: clamp(2.5rem, 12vw, 3.7rem);
    }

    .story-section,
    .features-section {
        padding: 95px 14px;
    }

    .story-copy {
        margin-bottom: 48px;
    }

    .story-copy h2,
    .section-heading h2,
    .privacy-card h2,
    .download-content h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .story-card {
        padding: 29px;
        border-radius: 27px;
    }

    .section-heading {
        margin-bottom: 58px;
    }

    .feature-showcase {
        min-height: auto;
        padding: 40px 22px;
        border-radius: 29px;
    }

    .feature-copy h3 {
        font-size: clamp(2.6rem, 12vw, 3.7rem);
    }

    .feature-visual {
        min-height: 420px;
    }

    .memory-card {
        width: 230px;
    }

    .memory-date {
        left: -8px;
    }

    .question-card {
        padding: 30px 23px;
        border-radius: 28px;
    }

    .question-card p {
        margin: 42px 0 55px;
        font-size: 1.75rem;
    }

    .question-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .activity-stack {
        min-height: 400px;
    }

    .activity-card {
        min-height: 220px;
        padding: 27px;
    }

    .privacy-section {
        padding: 80px 14px;
    }

    .privacy-card {
        padding: 55px 22px;
        border-radius: 29px;
    }

    .screenshots-section {
        padding: 95px 14px;
    }

    .screenshots-track {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .screenshot-card:nth-child(1),
    .screenshot-card:nth-child(3) {
        transform: none;
    }

    .screenshot-card:nth-child(1):hover,
    .screenshot-card:nth-child(3):hover {
        transform: translateY(-7px);
    }

    .download-section {
        padding: 100px 18px;
    }

    .site-footer {
        padding: 43px 20px;
    }

    .footer-top,
    .footer-bottom {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-navigation {
        justify-content: center;
        gap: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}