:root {
    --brand-blue: #4f5cff;
    --brand-sky: #58c7ff;
    --brand-navy: #15195f;
    --brand-ink: #16172f;
    --brand-yellow: #ffd84d;
    --brand-soft: #f5f8ff;
    --card-white: rgba(255, 255, 255, 0.9);
    --line-soft: rgba(255, 255, 255, 0.22);
    --shadow-strong: 0 28px 80px rgba(16, 22, 85, 0.3);
    --shadow-soft: 0 18px 48px rgba(19, 24, 78, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--brand-ink);
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(88, 199, 255, 0.34), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(255, 216, 77, 0.18), transparent 28%),
        linear-gradient(180deg, #14175f 0%, #4d59ff 30%, #eef7ff 68%, #ffffff 100%);
}

.site-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding-bottom: 32px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
    color: white;
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 13px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.13);
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    overflow-wrap: anywhere;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.brand-copy span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.87rem;
}

.nav {
    display: flex;
    gap: 10px;
    padding: 6px;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(10, 13, 55, 0.28);
    backdrop-filter: blur(14px);
}

.nav a {
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: background 0.25s ease;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: center;
    padding: 28px 0 56px;
}

.hero-copy {
    color: white;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #dff6ff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.hero h1 {
    margin: 0;
    max-width: 10ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.75rem, 5vw, 5.15rem);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 5px 20px rgba(9, 11, 58, 0.22);
}

.hero-text {
    max-width: 49ch;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
    color: var(--brand-ink);
    background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffffff 100%);
    box-shadow: 0 18px 34px rgba(9, 11, 58, 0.2);
}

.button-secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.92rem;
}

.hero-visual {
    position: relative;
    min-height: 680px;
}

.phone-card {
    position: absolute;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12));
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
    padding: 14px;
}

.phone-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.phone-card-main {
    top: 0;
    right: 16px;
    width: min(100%, 380px);
    height: 620px;
    transform: rotate(2deg);
}

.phone-card-top {
    top: 42px;
    left: 0;
    width: 220px;
    height: 330px;
    transform: rotate(-8deg);
}

.phone-card-bottom {
    right: 0;
    bottom: 0;
    width: 240px;
    height: 340px;
    transform: rotate(7deg);
}

.floating-card {
    position: absolute;
    max-width: 280px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.floating-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.16rem;
    line-height: 1.45;
}

.floating-label {
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-card-top {
    left: 36px;
    bottom: 84px;
}

.floating-card-bottom {
    right: 80px;
    bottom: 48px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.feature-card,
.trust-card,
.poster-tile,
.brand-banner {
    border: 1px solid rgba(17, 32, 79, 0.08);
    border-radius: 30px;
    background: var(--card-white);
    box-shadow: var(--shadow-soft);
}

.feature-card,
.trust-card {
    padding: 26px;
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(79, 92, 255, 0.13), rgba(88, 199, 255, 0.24));
    color: var(--brand-blue);
    font-weight: 800;
}

.feature-card h2,
.trust-card h3,
.section-heading h2 {
    margin: 18px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

.feature-card p,
.trust-card p,
.section-heading p,
.poster-copy p {
    margin: 0;
    color: rgba(22, 23, 47, 0.72);
    line-height: 1.72;
}

.brand-banner {
    overflow: hidden;
    margin-top: 84px;
    background: #4f5cff;
}

.brand-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-gallery,
.privacy-section {
    margin-top: 84px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.section-heading .eyebrow {
    color: var(--brand-blue);
}

.section-heading .eyebrow::before {
    background: rgba(79, 92, 255, 0.44);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.poster-tile {
    overflow: hidden;
}

.poster-tile-large {
    grid-column: span 2;
}

.poster-tile img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.poster-tile-large img {
    height: 580px;
}

.poster-copy {
    padding: 20px 22px 24px;
}

.poster-copy span {
    color: rgba(22, 23, 47, 0.54);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.poster-copy strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.2rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer {
    margin-top: 72px;
    padding: 28px 0 12px;
    color: rgba(22, 23, 47, 0.52);
    font-size: 0.94rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 12ch;
    }

    .hero-visual {
        min-height: 760px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .poster-tile-large {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .site-shell {
        width: min(100% - 20px, 100%);
    }

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

    .brand {
        align-items: flex-start;
    }

    .nav {
        justify-content: space-between;
        overflow-x: auto;
    }

    .hero {
        padding-top: 12px;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.35rem, 10vw, 3.7rem);
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .phone-card,
    .phone-card-main,
    .phone-card-top,
    .phone-card-bottom,
    .floating-card,
    .floating-card-top,
    .floating-card-bottom {
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        max-width: none;
    }

    .phone-card img {
        height: 480px;
    }

    .feature-grid,
    .gallery-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }

    .poster-tile-large {
        grid-column: auto;
    }

    .poster-tile img,
    .poster-tile-large img {
        height: 460px;
    }

    .brand-banner {
        border-radius: 24px;
        margin-top: 64px;
    }
}
