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

:root {
    --bg: #0a0e27;
    --bg-2: #111638;
    --surface: #1a2147;
    --surface-2: #222b59;
    --text: #eef1ff;
    --muted: #9aa3d6;
    --muted-2: #6b76b8;
    --primary: #5b8cff;
    --primary-bright: #7db1ff;
    --accent: #3fe0c5;
    --line: rgba(255, 255, 255, 0.08);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
        "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 39, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(91, 140, 255, 0.4);
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.brand-name em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-nav > a {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.2s;
}

.header-nav > a:hover {
    color: #fff;
}

.header-home {
    font-size: 14px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary), #6f6bff);
    border-radius: 999px;
    padding: 8px 20px;
    box-shadow: 0 6px 20px rgba(91, 140, 255, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-home:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(91, 140, 255, 0.45);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 80% -10%, #1b2a6b 0%, transparent 55%),
        radial-gradient(900px 500px at 0% 110%, #12334f 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0d1233 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(900px 600px at 60% 30%, #000 0%, transparent 70%);
}

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

.glow-a {
    width: 420px;
    height: 420px;
    background: rgba(91, 140, 255, 0.4);
    top: -120px;
    right: 6%;
}

.glow-b {
    width: 320px;
    height: 320px;
    background: rgba(63, 224, 197, 0.25);
    bottom: -80px;
    left: 4%;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary-bright);
    background: rgba(91, 140, 255, 0.1);
    border: 1px solid rgba(91, 140, 255, 0.28);
    border-radius: 999px;
    padding: 6px 16px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.hero-title {
    margin-top: 22px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.hero-title span {
    background: linear-gradient(120deg, var(--primary-bright), #6f6bff 60%, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-slogan {
    margin-top: 16px;
    font-size: 21px;
    font-weight: 600;
    color: var(--text);
}

.hero-desc {
    margin-top: 10px;
    font-size: 16px;
    color: var(--muted);
    max-width: 460px;
}

.meta-row {
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted-2);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-row .dot {
    color: #39406b;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(120deg, #fff, var(--primary-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat span {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- Buttons ---------- */
.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 15px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-ic {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    text-align: left;
}

.btn-text small {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 400;
}

.btn-text strong {
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6f6bff);
    color: #fff;
    box-shadow: 0 12px 30px rgba(91, 140, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 16px 38px rgba(91, 140, 255, 0.55);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.tip {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted-2);
}

/* ---------- Hero visual ---------- */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.phone-wrap {
    position: relative;
    width: 290px;
}

.phone-glow {
    position: absolute;
    inset: -40px -30px;
    background: radial-gradient(closest-side, rgba(91, 140, 255, 0.45), transparent);
    filter: blur(40px);
    z-index: 0;
}

/* ---------- Side buttons ---------- */
.phone-btns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.pbtn {
    position: absolute;
    background: linear-gradient(180deg, #3a3f4d, #22262f);
    border-radius: 3px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.6);
}

.pbtn-mute { left: -3px; top: 110px; width: 4px; height: 26px; }
.pbtn-vol { left: -3px; top: 146px; width: 4px; height: 56px; }
.pbtn-power { right: -3px; top: 150px; width: 4px; height: 82px; }

/* ---------- Phone body ---------- */
.phone-mockup {
    position: relative;
    z-index: 2;
    width: 290px;
    border-radius: 54px;
    background: linear-gradient(145deg, #5a6072 0%, #2a2f3c 8%, #10131c 45%, #262b37 90%, #3a4050 100%);
    padding: 14px;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 2px 3px rgba(255, 255, 255, 0.22),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.phone-bezel {
    position: relative;
    border-radius: 42px;
    background: #000;
    padding: 3px;
    overflow: hidden;
}

.phone-screen {
    position: relative;
    border-radius: 39px;
    overflow: hidden;
    background: #f5f7ff;
    color: #1a1f3d;
    display: flex;
    flex-direction: column;
    height: 560px;
    width: 100%;
}

.screen-ai {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.screen-live {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.phone-screen.has-live {
    height: auto;
    aspect-ratio: 393 / 852;
    --live-scale: 0.6514;
}

.live-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 393px;
    height: 852px;
    transform-origin: top left;
    transform: scale(var(--live-scale, 0.65));
    z-index: 1;
}

.phone-screen.has-image {
    height: auto;
    aspect-ratio: 938 / 1677;
}

/* ---------- Dynamic island ---------- */
.dynamic-island {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 27px;
    background: #000;
    border-radius: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.8);
}

.di-cam {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #27425e 0%, #0a1626 70%);
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.9);
}

.di-pill {
    width: 40px;
    height: 11px;
    border-radius: 6px;
    background: radial-gradient(ellipse at center, #2c3c58 0%, #0d1a2e 80%);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.9);
}

/* ---------- Status bar ---------- */
.statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px 0;
    height: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1f3d;
}

.sb-time { margin-left: 2px; font-size: 14px; font-weight: 700; }

.sb-signal svg, .sb-wifi svg {
    width: 16px;
    height: 12px;
    fill: #1a1f3d;
}

.sb-wifi svg { width: 14px; }

.sb-battery svg {
    width: 24px;
    height: 12px;
    fill: none;
    stroke: #1a1f3d;
    stroke-width: 1;
}

.sb-battery svg rect[fill] {
    fill: #1a1f3d;
    stroke: none;
}

.sb-signal, .sb-wifi, .sb-battery { display: inline-flex; margin-left: 6px; }

/* ---------- Screen app ---------- */
.screen-app {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 4px;
}

.app-head {
    background: linear-gradient(180deg, rgba(245, 247, 255, 0.98), rgba(245, 247, 255, 0.88));
    padding-bottom: 4px;
}

.screen-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 24px 16px 10px;
}

.screen-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    flex-shrink: 0;
}

.screen-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex: 1;
}

.screen-title strong {
    font-size: 16px;
}

.screen-title small {
    font-size: 10px;
    color: #7b83a8;
}

.screen-more {
    display: inline-flex;
    color: #7b83a8;
    padding: 4px;
}

.screen-more svg {
    width: 20px;
    height: 20px;
    fill: #9aa2c8;
}

.app-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 14px 10px;
    background: #eef1fa;
    border-radius: 14px;
    padding: 9px 12px;
    color: #9aa2c8;
    font-size: 11px;
}

.app-search svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #9aa2c8;
    stroke-width: 2;
    stroke-linecap: round;
}

.app-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ---------- Banner ---------- */
.screen-banner {
    margin: 2px 14px 12px;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #5b8cff, #6f6bff);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 3px;
    box-shadow: 0 10px 24px rgba(91, 140, 255, 0.4);
}

.screen-banner em {
    font-style: normal;
    font-size: 10px;
    opacity: 0.85;
    letter-spacing: 1px;
}

.screen-banner strong {
    font-size: 14px;
}

.screen-banner span {
    font-size: 10px;
    opacity: 0.85;
}

/* ---------- Category icons ---------- */
.app-cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 14px;
    margin-bottom: 12px;
}

.cat {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 12px;
    color: #fff;
}

.cat-ticket { background: linear-gradient(135deg, #ff9a8a, #ff6b6b); }
.cat-hotel { background: linear-gradient(135deg, #7db1ff, #4a6fe0); }
.cat-car { background: linear-gradient(135deg, #ffd37d, #ffa94d); }
.cat-more { background: linear-gradient(135deg, #6ee7b7, #2f9e77); }

/* ---------- List ---------- */
.screen-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0 14px;
    flex: 1;
    overflow: hidden;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(30, 40, 90, 0.08);
}

.av {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.av::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.5) 0%, transparent 45%);
}

.av1 { background: linear-gradient(135deg, #7dd3a0, #2f9e77); }
.av2 { background: linear-gradient(135deg, #8fb8ff, #4a6fe0); }
.av3 { background: linear-gradient(135deg, #ffc98a, #f59e4b); }

.item-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}

.item-info strong {
    font-size: 12px;
    color: #1a1f3d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-info small {
    font-size: 10px;
    color: #8a92b8;
}

.item-stars {
    font-size: 9px;
    color: #ffb340;
    letter-spacing: 1px;
}

.item-stars em {
    font-style: normal;
    font-size: 9px;
    color: #8a92b8;
    letter-spacing: 0;
}

/* ---------- Tabbar ---------- */
.screen-tabbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 8px 6px;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(30, 40, 90, 0.08);
    font-size: 9px;
    color: #9aa2c8;
}

.screen-tabbar span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}

.tab-ic {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.screen-tabbar .active {
    color: var(--primary);
    font-weight: 700;
}

/* ---------- Home indicator ---------- */
.home-indicator {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 4px;
    background: rgba(26, 31, 61, 0.75);
    z-index: 10;
}

.phone-screen.has-image .home-indicator {
    display: none;
}

.phone-screen.has-live .dynamic-island,
.phone-screen.has-live .home-indicator {
    display: none;
}

.phone-screen.has-image .dynamic-island {
    top: 10px;
    width: 96px;
    height: 27px;
}

/* ---------- Reflection ---------- */
.phone-reflection {
    position: absolute;
    inset: 6px;
    border-radius: 48px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, transparent 32%, transparent 68%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 3;
    pointer-events: none;
}

/* ---------- QR ---------- */
.qr-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    padding: 16px 16px 14px;
    text-align: center;
}

.qr-inner {
    background: #fff;
    border-radius: 14px;
    padding: 6px;
}

.qr-inner img {
    border-radius: 8px;
}

.qr-card p {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.qr-card span {
    font-size: 11px;
    color: var(--muted);
}

/* ---------- Features ---------- */
.features {
    padding: 90px 0;
    background: linear-gradient(180deg, #0d1233 0%, #0a0e27 100%);
}

.section-head {
    text-align: center;
    margin-bottom: 52px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    background: rgba(63, 224, 197, 0.1);
    border: 1px solid rgba(63, 224, 197, 0.3);
    border-radius: 999px;
    padding: 5px 16px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
}

.section-sub {
    margin-top: 10px;
    font-size: 16px;
    color: var(--muted);
}

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

.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 140, 255, 0.45);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fi-map { background: linear-gradient(135deg, #7db1ff, #4a6fe0); box-shadow: 0 10px 22px rgba(91, 140, 255, 0.35); }
.fi-discount { background: linear-gradient(135deg, #ff9a8a, #ff6b6b); box-shadow: 0 10px 22px rgba(255, 107, 107, 0.3); }
.fi-lightning { background: linear-gradient(135deg, #ffd37d, #ffa94d); box-shadow: 0 10px 22px rgba(255, 169, 77, 0.3); }
.fi-shield { background: linear-gradient(135deg, #6ee7b7, #2f9e77); box-shadow: 0 10px 22px rgba(47, 158, 119, 0.3); }
.fi-wallet { background: linear-gradient(135deg, #c39aff, #8b6bff); box-shadow: 0 10px 22px rgba(139, 107, 255, 0.3); }
.fi-headset { background: linear-gradient(135deg, #7fe3f0, #2fb3c8); box-shadow: 0 10px 22px rgba(47, 179, 200, 0.3); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--muted);
}

/* ---------- CTA ---------- */
.cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, #141b45 0%, #0a0e27 100%);
    border-top: 1px solid var(--line);
}

.cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 360px;
    background: radial-gradient(closest-side, rgba(91, 140, 255, 0.5), transparent);
    filter: blur(60px);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    text-align: center;
}

.cta-inner h2 {
    font-size: 34px;
    font-weight: 800;
}

.cta-inner p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--muted);
}

.cta .download-buttons {
    justify-content: center;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #080b1d;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    padding: 34px 0;
    font-size: 14px;
}

.footer-inner {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

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

.footer-inner p a {
    color: var(--muted);
}

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

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0ms);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-visual {
        order: -1;
    }

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

@media (max-width: 560px) {
    .hero {
        padding: 60px 0 72px;
    }

    .header-nav > a:not(.header-home) {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        gap: 28px;
    }

    .download-buttons .btn {
        flex: 1;
        justify-content: center;
    }

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

    .qr-card {
        display: none;
    }

    .phone-wrap {
        width: 260px;
    }

    .phone-mockup {
        width: 260px;
        border-radius: 48px;
    }

    .phone-screen {
        height: 500px;
    }

    .phone-screen.has-live {
        height: auto;
        --live-scale: 0.575;
    }

    .pbtn { display: none; }
}
