@charset "utf-8";

:root {
    --ink: #17152a;
    --muted: #716f82;
    --line: rgba(73, 62, 112, 0.12);
    --violet: #7657ff;
    --violet-dark: #5b36eb;
    --pink: #ef5fbd;
    --cyan: #3ccdc7;
    --soft-violet: #f3f0ff;
    --soft-pink: #fff0f8;
    --surface: #ffffff;
    --page: #fbfaff;
    --shadow: 0 28px 80px rgba(68, 48, 130, 0.14);
    --shell: min(1180px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--page);
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.section-shell {
    width: var(--shell);
    margin: 0 auto;
}

.section-block {
    padding: 120px 0;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 78px;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 35px rgba(51, 39, 93, 0.08);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: var(--shell);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    display: inline-flex;
    flex: none;
    align-items: center;
    gap: 11px;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(106, 73, 238, 0.2);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.08em;
}

.brand-copy small {
    margin-top: 7px;
    color: #9b98aa;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.site-nav {
    height: 100%;
    margin-left: auto;
    display: flex;
    align-items: stretch;
    gap: 34px;
}

.site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    color: #5f5b6e;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.site-nav a::after {
    position: absolute;
    right: 50%;
    bottom: 13px;
    left: 50%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--violet), var(--pink));
    content: "";
    transition: right 0.2s ease, left 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    right: 26%;
    left: 26%;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--soft-violet);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 155px 0 70px;
    overflow: hidden;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 255, 0.85)),
        radial-gradient(circle at 75% 20%, rgba(224, 207, 255, 0.9), transparent 42%);
}

.hero::before {
    position: absolute;
    top: 118px;
    right: -8%;
    width: 56%;
    height: 610px;
    border: 1px solid rgba(118, 87, 255, 0.09);
    border-radius: 48% 52% 43% 57%;
    content: "";
    transform: rotate(-8deg);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.hero-glow-one {
    top: 70px;
    left: -170px;
    width: 390px;
    height: 390px;
    background: rgba(237, 194, 255, 0.3);
}

.hero-glow-two {
    right: 12%;
    bottom: 60px;
    width: 210px;
    height: 210px;
    background: rgba(127, 224, 219, 0.2);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    align-items: center;
    gap: 68px;
}

.eyebrow {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--violet-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.eyebrow > span {
    width: 30px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--violet), var(--pink));
}

.eyebrow-center {
    justify-content: center;
}

.hero h1 {
    margin: 0;
    font-size: clamp(48px, 5.1vw, 72px);
    line-height: 1.16;
    letter-spacing: -0.055em;
}

.hero h1 em {
    color: transparent;
    background: linear-gradient(100deg, var(--violet-dark), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-lead {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
}

.button {
    min-height: 54px;
    padding: 0 25px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(115deg, var(--violet-dark), #8f67ff 60%, var(--pink));
    box-shadow: 0 18px 38px rgba(105, 68, 238, 0.28);
}

.download-button {
    min-width: 224px;
    min-height: 64px;
    padding: 10px 27px;
    justify-content: flex-start;
    gap: 15px;
}

.android-icon {
    width: 31px;
    height: 31px;
    flex: none;
    fill: currentColor;
}

.download-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
}

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

.download-copy small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.hero-points {
    margin: 31px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    list-style: none;
}

.hero-points li {
    color: #787486;
    font-size: 12px;
}

.hero-points span {
    margin-right: 5px;
    color: var(--violet);
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-image-wrap {
    position: relative;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.75);
    border-radius: 38px;
    background: #eee9ff;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.hero-image-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 50%);
    content: "";
}

.hero-image-wrap img {
    width: 100%;
    aspect-ratio: 1.64;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    z-index: 2;
    min-width: 188px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(62, 46, 113, 0.14);
    backdrop-filter: blur(14px);
}

.floating-card-top {
    top: -28px;
    right: 30px;
}

.floating-card-bottom {
    bottom: -30px;
    left: -33px;
}

.floating-card > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card small {
    color: #94909f;
    font-size: 10px;
}

.floating-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #ff81ca, #ee4da7);
}

.online-dot {
    width: 12px;
    height: 12px;
    border: 3px solid #d7fff5;
    border-radius: 50%;
    background: #1fd798;
    box-shadow: 0 0 0 6px rgba(31, 215, 152, 0.12);
}

.trust {
    background: #fff;
}

.trust-heading {
    margin-bottom: 56px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.trust-card {
    position: relative;
    min-height: 310px;
    padding: 38px 34px 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 20px 55px rgba(63, 47, 118, 0.06);
}

.trust-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
}

.trust-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-icon-id {
    color: #6848ec;
    background: #eeeaff;
}

.trust-icon-face {
    color: #df409d;
    background: #ffebf7;
}

.trust-icon-avatar {
    color: #149e98;
    background: #e6fbf9;
}

.trust-card h3 {
    margin: 24px 0 0;
    font-size: 22px;
}

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

.trust-card small {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 26px;
    color: #858190;
    font-size: 11px;
}

.trust-card small span {
    margin-right: 6px;
    color: var(--violet);
    font-weight: 900;
}

.features {
    background: var(--page);
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 95px;
    text-align: center;
}

.section-heading h2,
.contact-intro h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.contact-intro > p:last-child {
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 110px;
}

.feature-layout + .feature-layout {
    margin-top: 155px;
}

.feature-layout-reverse {
    grid-template-columns: 0.92fr 1fr;
}

.phone-stage {
    position: relative;
    width: 460px;
    max-width: 100%;
    min-height: 630px;
    margin: 0 auto;
    border-radius: 52% 48% 44% 56%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f2edff, #fff2fb);
}

.phone-stage-right {
    background: linear-gradient(145deg, #effffc, #f0eeff);
}

.phone-stage img {
    position: relative;
    z-index: 2;
    width: 282px;
    max-height: 575px;
    border: 8px solid #18151e;
    border-radius: 39px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 35px 70px rgba(46, 32, 95, 0.28);
}

.phone-shadow {
    position: absolute;
    right: 17%;
    bottom: 5%;
    left: 17%;
    height: 50px;
    border-radius: 50%;
    background: rgba(65, 43, 135, 0.18);
    filter: blur(22px);
}

.feature-copy h3 {
    max-width: 470px;
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.28;
    letter-spacing: -0.045em;
}

.feature-copy > p {
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.95;
}

.feature-list {
    margin: 34px 0 0;
    padding: 0;
    display: grid;
    gap: 20px;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-list li > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-list strong {
    font-size: 15px;
}

.feature-list small {
    color: #9995a4;
    font-size: 12px;
}

.list-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 21px;
    font-weight: 800;
}

.list-icon.violet {
    color: #6747eb;
    background: #eeeaff;
}

.list-icon.pink {
    color: #e44aa5;
    background: #ffebf7;
}

.list-icon.cyan {
    color: #19aaa2;
    background: #e6fbf9;
}

.list-icon.orange {
    color: #e88629;
    background: #fff2df;
}

.demo {
    position: relative;
    overflow: hidden;
    background: #17132a;
}

.demo::before {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(118, 87, 255, 0.32);
    content: "";
    filter: blur(90px);
}

.demo::after {
    position: absolute;
    bottom: -220px;
    left: 10%;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(239, 95, 189, 0.18);
    content: "";
    filter: blur(100px);
}

.demo-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: center;
    gap: 75px;
}

.demo-copy {
    color: #fff;
}

.demo-copy .eyebrow {
    color: #c9baff;
}

.demo-copy h2 {
    margin: 0;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.demo-copy > p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.9;
}

.demo-copy .product-slogan {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.video-card {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.video-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: #0c0919;
    object-fit: cover;
}

.about {
    background: #fff;
}

.about-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 38px;
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    align-items: stretch;
    background: #f8f6ff;
    box-shadow: 0 30px 80px rgba(64, 46, 120, 0.08);
}

.about-copy {
    padding: 48px 24px 42px 46px;
}

.about-copy h2 {
    margin: 0;
    font-size: clamp(28px, 2.5vw, 32px);
    line-height: 1.28;
    letter-spacing: -0.04em;
}

.about-copy > p {
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.about-values {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.about-values span {
    padding-left: 9px;
    border-left: 2px solid #d8d0ff;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-values strong {
    font-size: 13px;
}

.about-values small {
    color: #9995a5;
    font-size: 9px;
}

.company-visual {
    position: relative;
    min-height: 455px;
    background: #fff;
}

.company-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(248, 246, 255, 0.5), transparent 12%);
    content: "";
    pointer-events: none;
}

.company-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact {
    background:
        radial-gradient(circle at 12% 10%, rgba(118, 87, 255, 0.09), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(239, 95, 189, 0.08), transparent 25%),
        var(--page);
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 58px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.contact-card {
    min-width: 0;
    padding: 36px 30px;
    border: 1px solid var(--line);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 60px rgba(63, 47, 118, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.contact-card:hover {
    border-color: rgba(118, 87, 255, 0.35);
    box-shadow: 0 26px 65px rgba(77, 56, 147, 0.12);
    transform: translateY(-6px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--violet-dark);
    background: var(--soft-violet);
    font-size: 20px;
}

.contact-card small {
    color: #9b97a5;
    font-size: 11px;
}

.contact-card strong {
    margin-top: 9px;
    overflow-wrap: anywhere;
    font-size: 17px;
}

.contact-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    padding: 54px 0 30px;
    color: rgba(255, 255, 255, 0.7);
    background: #141122;
}

.footer-main {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand .brand-copy strong {
    color: #fff;
}

.footer-brand .brand-copy small {
    color: rgba(255, 255, 255, 0.42);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 12px;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 22px;
    }

    .site-nav a {
        font-size: 13px;
    }

    .hero-grid {
        gap: 42px;
    }

    .feature-layout {
        gap: 65px;
    }

    .about-card {
        grid-template-columns: 0.65fr 1.35fr;
    }

    .about-copy {
        padding: 42px 20px 38px 36px;
    }

    .company-visual {
        min-height: 430px;
    }
}

@media (max-width: 860px) {
    :root {
        --shell: min(100% - 36px, 720px);
    }

    .section-block {
        padding: 90px 0;
    }

    .nav-shell {
        justify-content: space-between;
    }

    .nav-toggle {
        z-index: 2;
        display: block;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(82vw, 360px);
        height: 100vh;
        padding: 110px 35px 45px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: -20px 0 60px rgba(35, 25, 74, 0.12);
        transform: translateX(105%);
        transition: transform 0.28s ease;
    }

    .site-nav.open {
        transform: translateX(0);
    }

    .site-nav a {
        height: 58px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 135px 0 65px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 78px;
    }

    .hero-copy {
        max-width: 640px;
        text-align: center;
    }

    .hero-copy .eyebrow {
        justify-content: center;
    }

    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

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

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

    .section-heading {
        margin-bottom: 70px;
    }

    .feature-layout,
    .feature-layout-reverse {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trust-grid {
        max-width: 590px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .feature-layout-reverse .feature-copy {
        order: 2;
    }

    .feature-layout-reverse .phone-stage {
        order: 1;
    }

    .feature-copy {
        max-width: 590px;
        margin: 0 auto;
        text-align: center;
    }

    .feature-copy h3 {
        margin-right: auto;
        margin-left: auto;
    }

    .feature-list {
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .demo-shell {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .demo-copy {
        max-width: 600px;
        text-align: center;
        margin: 0 auto;
    }

    .demo-copy .eyebrow {
        justify-content: center;
    }

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

    .about-copy {
        padding: 58px 45px 38px;
        text-align: center;
    }

    .about-copy .eyebrow {
        justify-content: center;
    }

    .company-visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .company-visual::after {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 570px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    :root {
        --shell: calc(100% - 28px);
    }

    html {
        scroll-padding-top: 72px;
    }

    .site-header {
        height: 68px;
        background: rgba(255, 255, 255, 0.86);
        backdrop-filter: blur(16px);
    }

    .brand img {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small {
        margin-top: 6px;
        font-size: 8px;
    }

    .section-block {
        padding: 72px 0;
    }

    .hero {
        padding-top: 115px;
    }

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

    .hero-lead {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-points {
        gap: 10px 15px;
    }

    .hero-image-wrap {
        border-width: 6px;
        border-radius: 24px;
        transform: none;
    }

    .hero-image-wrap img {
        aspect-ratio: 1.25;
        object-position: 64% center;
    }

    .floating-card {
        min-width: 165px;
        padding: 11px 13px;
    }

    .floating-card-top {
        top: -30px;
        right: 8px;
    }

    .floating-card-bottom {
        bottom: -35px;
        left: 7px;
    }

    .section-heading {
        margin-bottom: 55px;
    }

    .trust-heading {
        margin-bottom: 48px;
    }

    .section-heading h2,
    .contact-intro h2 {
        font-size: 34px;
    }

    .section-heading > p:last-child,
    .contact-intro > p:last-child {
        font-size: 14px;
    }

    .feature-layout + .feature-layout {
        margin-top: 110px;
    }

    .trust-card {
        min-height: 0;
        padding: 30px 25px;
    }

    .trust-card small {
        margin-top: 24px;
        padding-top: 0;
    }

    .phone-stage {
        width: 100%;
        min-height: 525px;
    }

    .phone-stage img {
        width: 235px;
        max-height: 490px;
        border-width: 6px;
        border-radius: 32px;
    }

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

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

    .demo-shell {
        gap: 40px;
    }

    .demo-copy h2 {
        font-size: 38px;
    }

    .video-card {
        padding: 6px;
        border-radius: 19px;
    }

    .video-card video {
        border-radius: 14px;
    }

    .about-card {
        border-radius: 27px;
    }

    .about-copy {
        padding: 42px 25px 30px;
    }

    .about-copy h2 {
        font-size: 31px;
    }

    .about-copy > p {
        font-size: 13px;
    }

    .about-values {
        gap: 8px;
    }

    .about-values span {
        padding-left: 8px;
    }

    .company-visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .company-visual img {
        object-position: center;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
