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

:root {
    --bg: #090d15;
    --bg-deep: #070a11;

    --surface: #101621;
    --surface-soft: #151c28;
    --surface-light: #1c2432;

    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.11);

    --text: #ffffff;
    --text-soft: #c3c8d1;
    --text-muted: #858d9c;

    --accent: #ff4458;
    --accent-hover: #e93a4e;
    --accent-soft: rgba(255, 68, 88, 0.11);

    --max-width: 1180px;
}

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

body {
    width: 100%;
    min-width: 0;
    min-height: 100vh;

    overflow-x: hidden;

    color: var(--text);

    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 9% 7%,
            rgba(255, 68, 88, 0.11),
            transparent 24%
        ),
        radial-gradient(
            circle at 91% 30%,
            rgba(255, 68, 88, 0.055),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #090d15 0%,
            #080c13 100%
        );
}

body > * {
    max-width: 100%;
}

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

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

.container {
    width: min(
        var(--max-width),
        calc(100% - 44px)
    );

    margin: 0 auto;
}

.site-header,
header,
nav {
    width: 100%;
    max-width: 100%;
}

header *,
nav *,
.site-header * {
    min-width: 0;
}

header img,
nav img {
    max-width: 100%;
    height: auto;
}

.material-symbols-rounded {
    vertical-align: middle;
}

.hero {
    position: relative;

    min-height: 800px;

    display: flex;
    align-items: center;

    padding: 110px 0 120px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 560px;
    height: 560px;

    right: -250px;
    top: 20px;

    border-radius: 50%;

    background:
        rgba(255, 68, 88, 0.09);

    filter: blur(115px);

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    left: -215px;
    bottom: 15px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 68, 88, 0.07);

    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(0, 0.96fr);

    align-items: center;

    gap: 96px;
}

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

.hero-kicker {
    margin-bottom: 23px;

    color: #ff7181;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 700px;

    font-size:
        clamp(
            52px,
            6.5vw,
            84px
        );

    line-height: 0.98;

    letter-spacing: -4.6px;

    font-weight: 800;
}

.hero h1 span {
    color: var(--accent);
}

.hero-description {
    max-width: 600px;

    margin-top: 29px;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 37px;
}

.hero-button {
    min-height: 66px;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    padding:
        9px 17px 9px 11px;

    border-radius: 16px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-primary {
    color: #ffffff;

    background: var(--accent);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 28px
        rgba(255, 68, 88, 0.23);
}

.hero-primary:hover {
    transform:
        translateY(-2px);

    background:
        var(--accent-hover);

    box-shadow:
        0 14px 34px
        rgba(255, 68, 88, 0.29);
}

.hero-secondary {
    color: #ffffff;

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    border:
        1px solid
        var(--border-strong);
}

.hero-secondary:hover {
    transform:
        translateY(-2px);

    background:
        var(--surface-soft);

    border-color:
        rgba(
            255,
            255,
            255,
            0.16
        );
}

.hero-button-icon {
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color: #ffffff;
}

.hero-secondary
.hero-button-icon {
    background:
        rgba(
            255,
            255,
            255,
            0.06
        );
}

.hero-button-icon
.material-symbols-rounded {
    color: #ffffff;

    font-size: 22px;
}

.play-store-icon img {
    width: 25px;
    height: 25px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);
}

.hero-button-copy {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.hero-button-copy strong {
    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;
}

.hero-button-copy small {
    margin-top: 4px;

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

    font-size: 10px;
    font-weight: 500;

    line-height: 1.2;
}

.hero-secondary
.hero-button-copy small {
    color:
        var(--text-muted);
}

.hero-footnote {
    max-width: 545px;

    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-top: 27px;

    color: var(--text-muted);

    font-size: 12px;
    line-height: 1.65;
}

.hero-footnote
.material-symbols-rounded {
    flex-shrink: 0;

    margin-top: 1px;

    color: #ffffff;

    font-size: 17px;
}

.preview-area {
    position: relative;

    min-height: 655px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-glow {
    position: absolute;

    width: 395px;
    height: 395px;

    border-radius: 50%;

    background:
        rgba(
            255,
            68,
            88,
            0.115
        );

    filter: blur(94px);

    pointer-events: none;
}

.preview-orbit {
    position: absolute;

    width: 455px;
    height: 455px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            68,
            88,
            0.09
        );

    pointer-events: none;
}

.preview-orbit::before {
    content: "";

    position: absolute;

    inset: 35px;

    border-radius: inherit;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.035
        );
}

.preview-card {
    position: relative;
    z-index: 3;

    width: 365px;
    max-width: 100%;

    padding: 9px;

    border-radius: 35px;

    border:
        1px solid
        var(--border-strong);

    background:
        linear-gradient(
            150deg,
            #1b2330,
            #0b1018
        );

    box-shadow:
        0 46px 110px
        rgba(
            0,
            0,
            0,
            0.50
        ),
        inset
        0 1px 0
        rgba(
            255,
            255,
            255,
            0.05
        );

    transform:
        rotate(1.7deg);
}

.preview-inner {
    overflow: hidden;

    border-radius: 27px;

    background:
        #0c1018;
}

.preview-image {
    position: relative;

    height: 515px;

    overflow: hidden;

    background:
        var(--surface);
}

.preview-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    user-select: none;
    -webkit-user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;
}

.image-guard {
    position: absolute;
    inset: 0;

    z-index: 4;
}

.image-shade {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(
                0,
                0,
                0,
                0
            )
            56%,
            rgba(
                0,
                0,
                0,
                0.10
            )
            73%,
            rgba(
                0,
                0,
                0,
                0.42
            )
            100%
        );
}

.preview-actions {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    padding:
        15px 20px 20px;
}

.preview-action {
    width: 59px;
    height: 59px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        var(--surface-soft);

    border:
        1px solid
        var(--border-strong);

    box-shadow:
        0 8px 22px
        rgba(
            0,
            0,
            0,
            0.25
        );

    cursor: default;
    user-select: none;
}

.preview-action
.material-symbols-rounded {
    color: #ffffff;

    font-size: 27px;
}

.preview-like {
    width: 72px;
    height: 72px;

    background:
        var(--accent);

    border-color:
        var(--accent);

    box-shadow:
        0 11px 31px
        rgba(
            255,
            68,
            88,
            0.30
        );
}

.preview-like
.material-symbols-rounded {
    font-size: 31px;

    font-variation-settings:
        'FILL' 1;
}

.preview-copy {
    position: absolute;

    z-index: 5;

    left: -48px;
    top: 115px;

    width: 175px;
}

.preview-copy-line {
    display: block;

    width: 34px;
    height: 2px;

    margin-bottom: 13px;

    border-radius: 99px;

    background:
        var(--accent);
}

.preview-copy strong {
    color: #ffffff;

    font-size: 16px;
    line-height: 1.35;
}

.preview-copy p {
    margin-top: 7px;

    color:
        var(--text-muted);

    font-size: 11px;
    line-height: 1.58;
}

.about {
    position: relative;

    padding:
        120px 0 125px;
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);

    gap: 90px;

    align-items: start;
}

.section-label {
    color:
        var(--accent);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.section-title {
    max-width: 590px;

    margin-top: 15px;

    color: #ffffff;

    font-size:
        clamp(
            40px,
            5vw,
            57px
        );

    line-height: 1.07;

    letter-spacing: -2.7px;
}

.section-description {
    max-width: 580px;

    margin-top: 21px;

    color:
        var(--text-soft);

    font-size: 15px;
    line-height: 1.85;
}

.feature-flow {
    position: relative;

    display: grid;
}

.feature-flow::before {
    content: "";

    position: absolute;

    left: 19px;
    top: 20px;
    bottom: 20px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(
                255,
                68,
                88,
                0.50
            ),
            rgba(
                255,
                255,
                255,
                0.04
            )
        );
}

.feature-row {
    position: relative;

    display: grid;

    grid-template-columns:
        40px 1fr;

    gap: 20px;

    padding: 25px 0;
}

.feature-index {
    position: relative;
    z-index: 2;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        #ffffff;

    background:
        var(--bg);

    border:
        1px solid
        rgba(
            255,
            68,
            88,
            0.30
        );

    font-size: 10px;
    font-weight: 700;
}

.feature-content {
    padding-top: 7px;
}

.feature-heading {
    display: flex;
    align-items: center;

    gap: 10px;
}

.feature-heading
.material-symbols-rounded {
    color: #ffffff;

    font-size: 21px;
}

.feature-heading h3 {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.feature-content p {
    max-width: 520px;

    margin-top: 9px;

    color:
        var(--text-muted);

    font-size: 13px;
    line-height: 1.75;
}

.experience-section {
    padding:
        25px 0 120px;
}

.experience-layout {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 75px;

    padding: 70px;

    border-radius: 31px;

    border:
        1px solid
        var(--border);

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(
                255,
                68,
                88,
                0.12
            ),
            transparent 32%
        ),
        var(--bg-deep);
}

.experience-layout::after {
    content: "";

    position: absolute;

    width: 290px;
    height: 290px;

    right: -130px;
    bottom: -140px;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            68,
            88,
            0.10
        );
}

.experience-copy {
    position: relative;
    z-index: 2;
}

.experience-copy h2 {
    max-width: 600px;

    margin-top: 14px;

    color: #ffffff;

    font-size:
        clamp(
            40px,
            5vw,
            56px
        );

    line-height: 1.07;

    letter-spacing: -2.6px;
}

.experience-copy p {
    max-width: 570px;

    margin-top: 20px;

    color:
        var(--text-soft);

    font-size: 14px;
    line-height: 1.83;
}

.experience-visual {
    position: relative;
    z-index: 2;
}

.experience-track {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

.experience-step {
    flex-shrink: 0;

    width: 92px;
    height: 92px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.11
        );

    background:
        var(--surface);

    box-shadow:
        0 12px 28px
        rgba(
            0,
            0,
            0,
            0.22
        );
}

.experience-step span {
    color:
        var(--accent);

    font-size: 10px;
    font-weight: 700;
}

.experience-step strong {
    margin-top: 5px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
}

.experience-connector {
    flex: 1;

    height: 1px;

    margin: 0 7px;

    background:
        linear-gradient(
            90deg,
            rgba(
                255,
                68,
                88,
                0.32
            ),
            rgba(
                255,
                255,
                255,
                0.06
            )
        );
}

.download-section {
    padding:
        10px 0 85px;
}

.download-box {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 55px;

    padding: 62px;

    border-radius: 31px;

    border:
        1px solid
        rgba(
            255,
            68,
            88,
            0.17
        );

    background:
        linear-gradient(
            135deg,
            rgba(
                255,
                68,
                88,
                0.07
            ),
            transparent 48%
        ),
        var(--surface);
}

.download-glow {
    position: absolute;

    width: 320px;
    height: 320px;

    top: -185px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(
            255,
            68,
            88,
            0.11
        );

    filter: blur(70px);
}

.download-copy {
    position: relative;
    z-index: 2;
}

.download-copy h2 {
    max-width: 650px;

    margin-top: 14px;

    color: #ffffff;

    font-size:
        clamp(
            38px,
            4.9vw,
            54px
        );

    line-height: 1.07;

    letter-spacing: -2.5px;
}

.download-copy p {
    max-width: 580px;

    margin-top: 18px;

    color:
        var(--text-soft);

    font-size: 14px;
    line-height: 1.8;
}

.download-action {
    position: relative;
    z-index: 2;

    min-width: 310px;

    display: grid;

    grid-template-columns:
        52px 1fr 35px;

    align-items: center;

    gap: 14px;

    padding: 13px 14px;

    border-radius: 18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.11
        );

    background:
        #0b1018;

    box-shadow:
        0 14px 35px
        rgba(
            0,
            0,
            0,
            0.30
        );

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.download-action:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(
            255,
            68,
            88,
            0.28
        );

    background:
        #0e141e;

    box-shadow:
        0 18px 40px
        rgba(
            0,
            0,
            0,
            0.34
        );
}

.download-action-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        var(--accent);

    box-shadow:
        0 8px 20px
        rgba(
            255,
            68,
            88,
            0.22
        );
}

.download-action-icon img {
    width: 27px;
    height: 27px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);
}

.download-action-copy {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
}

.download-action-copy span {
    color:
        var(--text-muted);

    font-size: 10px;
    font-weight: 500;
}

.download-action-copy strong {
    margin-top: 5px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
}

.download-action-arrow {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #ffffff;

    background:
        rgba(
            255,
            255,
            255,
            0.055
        );
}

.download-action-arrow
.material-symbols-rounded {
    color: #ffffff;

    font-size: 20px;
}

@media (max-width: 1040px) {

    header,
    nav,
    .site-header {
        width: 100%;
        max-width: 100%;

        overflow-x: clip;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 75px;
    }

    .hero-copy {
        margin: 0 auto;

        text-align: center;
    }

    .hero-description,
    .hero-footnote {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-footnote {
        justify-content: center;
    }

    .preview-card {
        transform: none;
    }

    .preview-copy {
        left: 25px;
        top: 55px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .experience-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .download-box {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .download-copy h2,
    .download-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .download-action {
        margin: 0 auto;

        text-align: left;
    }
}

@media (max-width: 700px) {

    .container {
        width:
            calc(100% - 28px);
    }

    body {
        overflow-x: hidden;
    }

    header,
    nav,
    .site-header,
    .header-container,
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero {
        min-height: auto;

        padding:
            58px 0 80px;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero-kicker {
        margin-bottom: 18px;

        font-size: 10px;
    }

    .hero h1 {
        font-size:
            clamp(
                46px,
                14vw,
                62px
            );

        letter-spacing: -3.2px;
    }

    .hero-description {
        margin-top: 22px;

        font-size: 15px;
    }

    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
    }

    .hero-button {
        width: 100%;

        min-height: 67px;

        justify-content: flex-start;
    }

    .hero-footnote {
        text-align: left;
    }

    .preview-area {
        min-height: auto;
    }

    .preview-orbit {
        width: 320px;
        height: 320px;
    }

    .preview-card {
        width: 100%;
        max-width: 370px;

        padding: 8px;

        border-radius: 30px;
    }

    .preview-inner {
        border-radius: 23px;
    }

    .preview-image {
        height:
            min(
                126vw,
                500px
            );
    }

    .preview-actions {
        min-height: 98px;

        gap: 19px;
    }

    .preview-action {
        width: 54px;
        height: 54px;
    }

    .preview-like {
        width: 67px;
        height: 67px;
    }

    .preview-copy {
        display: none;
    }

    .about {
        padding:
            85px 0 95px;
    }

    .section-title {
        font-size: 40px;

        letter-spacing: -2px;
    }

    .section-description {
        font-size: 14px;
    }

    .feature-flow::before {
        left: 17px;
    }

    .feature-row {
        grid-template-columns:
            36px 1fr;

        gap: 14px;

        padding: 23px 0;
    }

    .feature-index {
        width: 36px;
        height: 36px;
    }

    .feature-content {
        padding-top: 5px;
    }

    .feature-heading h3 {
        font-size: 16px;
    }

    .feature-heading
    .material-symbols-rounded {
        font-size: 20px;
    }

    .experience-section {
        padding-bottom: 85px;
    }

    .experience-layout {
        padding:
            43px 23px;

        border-radius: 25px;
    }

    .experience-copy h2 {
        font-size: 40px;
    }

    .experience-track {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 13px;
    }

    .experience-step {
        width: 100%;
        height: 90px;

        border-radius: 18px;
    }

    .experience-connector {
        display: none;
    }

    .download-section {
        padding-bottom: 60px;
    }

    .download-box {
        padding:
            45px 22px;

        border-radius: 25px;
    }

    .download-copy h2 {
        font-size: 39px;

        letter-spacing: -2px;
    }

    .download-action {
        width: 100%;
        min-width: 0;

        max-width: 340px;

        grid-template-columns:
            50px 1fr 34px;
    }

    .download-action-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 390px) {

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

    .preview-image {
        height: 445px;
    }

    .preview-actions {
        gap: 14px;
    }

    .preview-action {
        width: 51px;
        height: 51px;
    }

    .preview-like {
        width: 63px;
        height: 63px;
    }

    .download-action {
        grid-template-columns:
            47px 1fr 31px;

        gap: 10px;

        padding: 11px;
    }

    .download-action-icon {
        width: 47px;
        height: 47px;
    }

    .download-action-copy strong {
        font-size: 13px;
    }

}
