/* PurrrrrFocus English homepage draft — isolated from production styles */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital@1&display=swap');

:root {
    --as-terracotta: #6B2E1F;
    --as-terracotta-light: #8B3A28;
    --bg-primary: #F9F3E6;
    --bg-card: #FFFFFF;
    --text-primary: #3B241D;
    --text-secondary: #5C3A21;
    --accent: #7A1E1E;
    --border: #DEBA86;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --hero-title: clamp(2.1rem, 4.8vw, 3.6rem);
    --section-title: clamp(1.55rem, 3vw, 2.35rem);
    --panel-radius: 24px;
    --panel-shadow: 0 24px 60px rgba(59, 36, 29, 0.16);
    --story-phone-shadow: 0 4px 10px rgba(59, 36, 29, 0.08);
    --story-phone-shadow-inset: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    --content-max: 1140px;
    --hero-image-size: min(260px, 72vw);
    --sticky-download-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.draft-page {
    margin: 0;
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    animation: draftFadeIn 0.5s ease;
    overflow-x: clip;
}

html[lang="zh-CN"] body.draft-page {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", var(--font-body);
}

@keyframes draftFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@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;
    }
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    padding: 10px 16px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    z-index: 100;
}
.skip-link:focus { top: 16px; }

/* Header */
.draft-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}
.draft-header.scrolled {
    background: rgba(107, 46, 31, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.draft-header.scrolled-light {
    background: rgba(249, 243, 230, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(107, 46, 31, 0.12);
}
.draft-header.scrolled-light .draft-brand-name,
.draft-header.scrolled-light .draft-nav a { color: var(--text-primary); }
.draft-header.scrolled-light .draft-brand { color: var(--text-primary); }
.draft-header.scrolled-light .lang-dropdown-trigger {
    color: var(--text-primary);
    border-color: rgba(59, 36, 29, 0.25);
}
.draft-header.scrolled-light .lang-dropdown-trigger:hover {
    color: var(--text-primary);
    background: rgba(59, 36, 29, 0.06);
    border-color: rgba(59, 36, 29, 0.35);
}
.draft-header.scrolled-light .mobile-nav-toggle { color: var(--text-primary); }
.draft-header.scrolled-light .mobile-nav-toggle:hover {
    background: rgba(59, 36, 29, 0.06);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}
.draft-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}
.draft-brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}
.draft-brand-name { font-size: 1.15rem; font-weight: 600; }
.draft-nav {
    display: flex;
    gap: 22px;
    align-items: center;
}
.draft-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
}
.draft-nav a:hover { color: #fff; }
@media (max-width: 600px) {
    .header-nav,
    .draft-nav { display: none; }
    .header-actions { gap: 12px; }
}

/* Language switcher */
.lang-dropdown { position: relative; }
.lang-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.95em;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    outline: none;
    box-shadow: none;
}
.lang-dropdown-trigger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
}
.lang-dropdown-trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.lang-dropdown-trigger:focus:not(:focus-visible),
.lang-dropdown-trigger:active { outline: none; }
.lang-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: inherit;
}
.lang-icon svg { display: block; }
.lang-code {
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}
.lang-chevron {
    font-size: 0.65em;
    opacity: 0.9;
    transition: transform 0.2s ease;
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    min-width: 140px;
    padding: 6px 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 20;
}
.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.lang-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.lang-dropdown-menu a.active {
    color: #fff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 600px) {
    .lang-dropdown-trigger {
        border: none;
        background: transparent;
        padding: 10px;
        gap: 0;
    }
    .lang-dropdown-trigger:hover {
        border-color: transparent;
        background: rgba(255, 255, 255, 0.08);
    }
    .lang-code,
    .lang-dropdown-trigger .lang-chevron { display: none; }
    .draft-header.scrolled-light .lang-dropdown-trigger:hover {
        background: rgba(59, 36, 29, 0.06);
    }
}

/* Mobile nav */
.mobile-nav { display: none; }
@media (max-width: 600px) {
    .mobile-nav {
        display: block;
        position: relative;
        flex-shrink: 0;
    }
    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: 0;
        border: none;
        background: transparent;
        color: rgba(255, 255, 255, 0.95);
        cursor: pointer;
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    .mobile-nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
    .mobile-nav-toggle:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }
    .mobile-nav-toggle:focus:not(:focus-visible) { outline: none; }
    .mobile-nav-icon svg { display: block; }
    .mobile-nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 6px;
        min-width: 220px;
        padding: 6px 0;
        background: rgba(0, 0, 0, 0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        z-index: 20;
    }
    .mobile-nav.open .mobile-nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mobile-nav-menu a {
        display: block;
        padding: 10px 16px;
        font-size: 0.95em;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: background 0.15s ease, color 0.15s ease;
    }
    .mobile-nav-menu a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
    }
}

.container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.draft-hero {
    position: relative;
    min-height: 92vh;
    min-height: 92dvh;
    padding: 80px 20px min(14vh, 110px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, var(--as-terracotta) 0%, #4A1F14 55%, #3B1810 100%);
}
.draft-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: min(42vh, 360px);
    background: linear-gradient(
        to bottom,
        rgba(59, 24, 16, 0) 0%,
        rgba(91, 48, 32, 0.35) 28%,
        rgba(149, 98, 68, 0.55) 52%,
        rgba(196, 162, 124, 0.72) 72%,
        rgba(230, 210, 178, 0.88) 88%,
        var(--bg-primary) 100%
    );
    pointer-events: none;
    z-index: 2;
}
.draft-hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--content-max);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.draft-hero-copy {
    text-align: left;
    min-width: 0;
}

/* Lora italic — accent phrases only, not full headings */
.keyword {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
}

.draft-hero-title {
    font-size: var(--hero-title);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    animation: fadeInUp 0.75s ease both;
    text-wrap: balance;
}
.hero-title-line {
    display: block;
}
@media (min-width: 901px) {
    .hero-title-line {
        white-space: nowrap;
    }
}
.draft-hero-title .keyword {
    font-weight: 400;
}
/* Lora italic is for Latin hero accents only — zh keeps one unified weight */
html[lang="zh-CN"] .draft-hero-title .keyword {
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
    letter-spacing: inherit;
}
.draft-hero-eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.65);
    animation: fadeInUp 0.75s ease both;
}
.draft-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 480px;
    animation: fadeInUp 0.75s ease 0.1s both;
}
.draft-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInUp 0.75s ease 0.2s both;
}
.draft-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.draft-hero-secondary {
    display: inline-block;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    line-height: 1.4;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.draft-hero-secondary:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}
.draft-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    animation: fadeInUp 0.75s ease 0.25s both;
}
.draft-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.draft-trust-pill-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    opacity: 0.95;
}
html[lang="zh-CN"] .draft-trust-pill {
    text-transform: none;
    letter-spacing: 0.02em;
}
.draft-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--hero-image-size);
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
}
.draft-hero-visual picture {
    display: block;
    width: 100%;
    line-height: 0;
}
.draft-hero-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

/* PC: 双栏均分，Hero 占满视口高度 */
@media (min-width: 901px) {
    .draft-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .draft-hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 48px 56px;
        max-width: min(1180px, 94vw);
        align-items: center;
    }

    .draft-hero-copy {
        max-width: 540px;
    }

    .draft-hero-visual {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        justify-content: center;
    }

    .draft-hero-visual picture {
        width: min(100%, clamp(380px, 36vw, 480px));
    }
}

@media (min-width: 1200px) {
    .draft-hero-visual picture {
        width: min(100%, 480px);
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .draft-hero-inner {
        text-align: center;
    }
    .draft-hero-copy { text-align: center; }
    .draft-hero-subtitle { margin-left: auto; margin-right: auto; }
    .draft-hero-cta,
    .draft-hero-actions { align-items: center; }
    .draft-trust-pills { justify-content: center; }
    .draft-hero-visual {
        justify-self: center;
        margin: 4px auto 0;
    }
}

/* Placeholder */
.media-placeholder {
    width: 100%;
    border-radius: var(--panel-radius);
    background:
        linear-gradient(135deg, rgba(107, 46, 31, 0.35) 0%, rgba(139, 58, 40, 0.2) 100%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.06) 0,
            rgba(255, 255, 255, 0.06) 8px,
            transparent 8px,
            transparent 16px
        );
    border: 2px dashed rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}
.story-section .media-placeholder {
    border-color: rgba(107, 46, 31, 0.35);
    color: rgba(59, 36, 29, 0.55);
    background:
        linear-gradient(135deg, rgba(222, 186, 134, 0.35) 0%, rgba(249, 243, 230, 0.9) 100%),
        repeating-linear-gradient(
            -45deg,
            rgba(107, 46, 31, 0.05) 0,
            rgba(107, 46, 31, 0.05) 8px,
            transparent 8px,
            transparent 16px
        );
    min-height: 360px;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.app-store-badge img {
    height: 54px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease;
}
.app-store-badge:hover img { transform: translateY(-3px); }

/* Transition quote */
.draft-quote {
    position: relative;
    z-index: 1;
    padding: 72px 20px 100px;
    text-align: center;
    background: var(--bg-primary);
}
.draft-quote h2 {
    font-weight: 300;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.45;
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-primary);
}
.draft-quote-lead {
    display: block;
    opacity: 0.55;
    margin-bottom: 0.15em;
}
.draft-quote-rest {
    display: block;
}
@media (min-width: 861px) {
    .draft-quote h2 {
        text-wrap: balance;
    }
}

/* Story */
.story-section {
    padding: 40px 20px 100px;
    background: var(--bg-primary);
}
.story-section .section-heading {
    text-align: center;
    margin-bottom: 64px;
}
.story-section .section-heading h2 {
    font-size: var(--section-title);
    font-weight: 300;
    margin: 0 0 12px;
    color: var(--text-primary);
}
.story-section .section-heading p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}
.story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 72px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.story-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
.story-item.reverse .story-media { order: 2; }
.story-item.reverse .story-copy { order: 1; }
.story-media,
.story-copy {
    min-width: 0;
}
.story-panel {
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}
.story-panel:has(.timer-demo),
.story-panel:has(.live-demo),
.story-panel:has(.shield-demo),
.story-panel:has(.widget-demo),
.story-panel:has(.privacy-showcase),
.story-panel:has(.sounds-showcase),
.story-panel--sounds {
    overflow: visible;
}
.story-image {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    border: none;
    box-shadow: none;
}
.story-panel .media-placeholder { min-height: 400px; }

/* Companion grid — Meet Your Companions */
.companion-grid {
    --companion-count: 9;
    --companion-step-ms: 600ms;
    --companion-cycle: calc(var(--companion-count) * var(--companion-step-ms));
    --companion-mystery-color: #c48676;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2vw, 14px);
    width: 100%;
    padding: clamp(14px, 2.5vw, 22px);
    background: rgba(249, 243, 230, 0.92);
    border-radius: 22px;
    box-sizing: border-box;
}
.companion-cell {
    aspect-ratio: 1;
    border-radius: 22%;
    overflow: hidden;
    position: relative;
    transform: scale(1);
    transform-origin: center center;
    will-change: transform;
}
.companion-cell img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}
.companion-cell picture {
    display: block;
    width: 100%;
    height: 100%;
}
.companion-cell-mystery {
    width: 88%;
    margin: auto;
    align-self: center;
    justify-self: center;
    background: transparent;
    border: 2px solid var(--companion-mystery-color);
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(59, 36, 29, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transform-origin: center center;
}
.companion-mystery-mark {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 9vw, 3.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    color: var(--companion-mystery-color);
    user-select: none;
}
.companion-grid.is-active .companion-cell:not(.companion-cell-mystery) {
    animation: companion-emphasize var(--companion-cycle) ease-in-out infinite;
    animation-delay: calc(var(--companion-step) * var(--companion-step-ms));
}
.companion-grid.is-active .companion-cell-mystery {
    animation: companion-mystery-shake var(--companion-cycle) ease-in-out infinite;
    animation-delay: calc(var(--companion-step) * var(--companion-step-ms));
}
@keyframes companion-emphasize {
    0%, 100% { transform: scale(1); }
    4% { transform: scale(1.08); }
    8% { transform: scale(1); }
}
@keyframes companion-mystery-shake {
    0%, 100% { transform: rotate(0deg); }
    1.5% { transform: rotate(-5deg); }
    3% { transform: rotate(5deg); }
    4.5% { transform: rotate(-4deg); }
    6% { transform: rotate(4deg); }
    7.5% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
    .companion-grid.is-active .companion-cell {
        animation: none;
    }
}

/* Badge reel — Unlock Beautiful Badges (matches onboarding marquee) */
.badge-reel {
    container-type: inline-size;
    --badge-gap: clamp(12px, 2vw, 18px);
    --badge-row-gap: clamp(18px, 2.8vw, 26px);
    --badge-cell-size: clamp(72px, calc((100cqw - var(--badge-gap) * 2) / 3.45), 118px);
    width: 100%;
    aspect-ratio: 6 / 5;
    min-height: 400px;
    padding: clamp(20px, 4vw, 32px) clamp(10px, 2vw, 16px);
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: var(--badge-row-gap);
    box-sizing: border-box;
}
.badge-marquee-row {
    overflow: hidden;
    width: 100%;
    height: var(--badge-cell-size);
    min-height: var(--badge-cell-size);
    flex: 0 0 var(--badge-cell-size);
}
.badge-marquee-track {
    display: flex;
    width: max-content;
    height: 100%;
    will-change: transform;
}
.badge-marquee-set {
    display: flex;
    align-items: center;
    gap: var(--badge-gap);
    padding-right: var(--badge-gap);
    flex: 0 0 auto;
    height: 100%;
}
.badge-cell {
    flex: 0 0 var(--badge-cell-size);
    width: var(--badge-cell-size);
    min-width: var(--badge-cell-size);
    height: var(--badge-cell-size);
    min-height: var(--badge-cell-size);
    flex-shrink: 0;
    transform: scale(0.82);
    transform-origin: center center;
    opacity: 0.4;
    filter: saturate(0.55);
    transition:
        transform 0.46s cubic-bezier(0.34, 1.28, 0.64, 1),
        opacity 0.46s ease,
        filter 0.46s ease;
    transition-delay: calc(min(var(--stagger-tier, 0), 36) * 28ms);
}
.badge-cell img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
}
.badge-reel.is-active .badge-cell {
    transform: scale(1);
    opacity: 1;
    filter: saturate(1);
}
.badge-reel.is-active:not(.is-static) .badge-marquee-row--left .badge-marquee-track {
    animation: badge-marquee-left var(--marquee-duration, 42s) linear infinite;
}
.badge-reel.is-active:not(.is-static) .badge-marquee-row--right .badge-marquee-track {
    animation: badge-marquee-right var(--marquee-duration, 42s) linear infinite;
}
@keyframes badge-marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes badge-marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    .badge-reel.is-active:not(.is-static) .badge-marquee-track {
        animation: none;
    }
    .badge-cell {
        transform: scale(1);
        opacity: 1;
        filter: saturate(1);
        transition: none;
    }
}
@media (max-width: 860px) {
    .badge-reel {
        aspect-ratio: auto;
        min-height: clamp(280px, 68vw, 360px);
        --badge-cell-size: clamp(52px, calc((100cqw - var(--badge-gap) * 2) / 4), 88px);
        padding-inline: clamp(8px, 2vw, 12px);
    }
}

/* Stats showcase — Focus Stats & Timeline (code-drawn charts) */
.stats-showcase {
    width: 100%;
    min-height: 480px;
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
}
.stats-showcase-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    padding: clamp(14px, 2.8vw, 20px);
    box-sizing: border-box;
}
.stats-showcase-panels {
    position: relative;
    width: 100%;
    min-height: 420px;
    height: calc(100% - 28px);
}
.stats-showcase-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
    pointer-events: none;
}
.stats-showcase-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}
.stats-chart-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 420px;
    height: 100%;
    padding: clamp(12px, 2.5vw, 16px);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}
.stats-chart-card-head {
    margin-bottom: 6px;
    flex-shrink: 0;
}
.stats-showcase-title {
    margin: 0;
    font-size: clamp(0.95rem, 2.1vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-primary);
}
.stats-showcase-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 8px;
    flex-shrink: 0;
}
.stats-kpi-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(92, 58, 33, 0.72);
    margin-bottom: 2px;
}
.stats-kpi-value {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 600;
    color: var(--text-primary);
}
.stats-segmented {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 3px;
    margin-bottom: 10px;
    background: rgba(59, 36, 29, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.stats-segment {
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    color: rgba(59, 36, 29, 0.65);
}
.stats-segment.is-active {
    background: rgba(122, 30, 30, 0.88);
    color: #fff;
    box-shadow: 0 2px 8px rgba(122, 30, 30, 0.25);
}
/* Chart plot area — per chart type */
.stats-showcase-chart {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: hidden;
}
.stats-showcase-chart--trend,
.stats-showcase-chart--hours {
    align-items: flex-end;
    justify-content: center;
    min-height: 200px;
    max-height: 220px;
}
.stats-showcase-chart--types {
    align-items: stretch;
    justify-content: flex-start;
    min-height: 260px;
    max-height: none;
    overflow: visible;
}
.stats-chart-svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}
.stats-showcase-chart--trend .stats-chart-svg,
.stats-showcase-chart--hours .stats-chart-svg {
    max-height: 200px;
}
.stats-showcase-chart--types .stats-chart-svg {
    max-height: none;
    overflow: visible;
}
.stats-chart-trend {
    max-width: 100%;
}
.stats-chart-donut {
    width: min(132px, 34vw);
    margin: 0 auto;
    flex-shrink: 0;
}
.stats-bar.is-selected {
    filter: drop-shadow(0 4px 10px rgba(122, 30, 30, 0.28));
}
.stats-bar-label {
    fill: rgba(92, 58, 33, 0.78);
    font-size: 10px;
    font-family: var(--font-body);
}
.stats-bar-animate {
    transform: scaleY(0);
    transform-box: fill-box;
    transform-origin: 50% 100%;
}
.stats-bar-animate.is-grown {
    transform: scaleY(1);
    transition: transform 0.58s cubic-bezier(0.34, 1.28, 0.64, 1);
    transition-delay: var(--bar-delay, 0s);
}
.stats-tooltip-bg {
    fill: rgba(255, 255, 255, 0.92);
    stroke: rgba(59, 36, 29, 0.12);
    stroke-width: 0.6;
}
.stats-tooltip-text {
    fill: var(--text-primary);
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-body);
}
.stats-types-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    height: 100%;
    min-height: 240px;
    overflow: visible;
}
.stats-type-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    overflow: visible;
}
.stats-type-row {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr) 5rem;
    gap: 8px;
    align-items: center;
    font-size: 0.66rem;
    color: rgba(59, 36, 29, 0.88);
    line-height: 1.2;
}
.stats-type-name {
    width: 4.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.stats-type-track {
    width: 100%;
    min-width: 0;
    height: 4px;
    border-radius: 999px;
    background: rgba(59, 36, 29, 0.1);
    overflow: hidden;
}
.stats-type-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
}
.stats-type-fill.is-filled {
    transform: scaleX(1);
    transition: transform 0.55s cubic-bezier(0.34, 1.28, 0.64, 1);
}
.stats-type-meta {
    width: 5rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    color: rgba(92, 58, 33, 0.78);
}
.stats-tooltips {
    pointer-events: none;
}
.stats-type-meta em {
    font-style: normal;
    opacity: 0.75;
}
.stats-donut-animate {
    opacity: 0;
}
.stats-donut-animate.is-drawn {
    opacity: 1;
    transition: opacity 0.35s ease;
    transition-delay: var(--seg-delay, 0s);
}
.stats-hours-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.stats-hours-scroll::-webkit-scrollbar {
    display: none;
}
.stats-hours-scroll.is-panning .stats-chart-hours {
    animation: stats-hours-pan 5.5s ease-in-out infinite alternate;
}
.stats-chart-hours {
    width: 520px;
    max-width: none;
    min-width: 520px;
}
@keyframes stats-hours-pan {
    from { transform: translateX(0); }
    to { transform: translateX(min(-28%, -120px)); }
}
.stats-showcase-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(10px, 2vw, 14px);
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
}
.stats-showcase-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(59, 36, 29, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.stats-showcase-dot.is-active {
    background: rgba(122, 30, 30, 0.85);
    transform: scale(1.25);
}
.stats-showcase-dot:focus-visible {
    outline: 2px solid rgba(122, 30, 30, 0.55);
    outline-offset: 2px;
}
@media (max-width: 560px) {
    .stats-chart-hours {
        width: 480px;
        min-width: 480px;
    }
}

/* Sounds showcase — Relax with Calming Sounds */
.sounds-showcase {
    --sounds-side-size: clamp(68px, 17vw, 96px);
    --sounds-center-size: clamp(156px, 36vw, 210px);
    --sounds-slide-ease: cubic-bezier(0.32, 0.72, 0, 1);
    --sounds-slot-prev: 11%;
    --sounds-slot-main: 50%;
    --sounds-slot-next: 89%;
    --sounds-slot-incoming: 112%;
    --sounds-slot-slide-prev-exit: -2%;
    --sounds-slot-slide-main-to-side: 11%;
    --sounds-slot-slide-incoming: 89%;
    width: 100%;
    aspect-ratio: 6 / 5;
    min-height: 400px;
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.sounds-showcase-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: min(100%, 480px);
    padding: clamp(16px, 3vw, 24px);
    box-sizing: border-box;
}
.sounds-showcase-rail {
    position: relative;
    width: 100%;
    height: var(--sounds-center-size);
    overflow: visible;
}
.sounds-showcase-track {
    position: absolute;
    inset: 0;
}
.sounds-showcase-cell {
    position: absolute;
    top: 50%;
    left: var(--slot-x, 50%);
    z-index: var(--slot-z, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: var(--slot-opacity, 1);
    transform: translate(-50%, -50%) scale(var(--slot-scale, 1));
    transition:
        left 0.56s var(--sounds-slide-ease),
        transform 0.56s var(--sounds-slide-ease),
        opacity 0.56s var(--sounds-slide-ease);
    will-change: left, transform, opacity;
}
.sounds-showcase-cell[data-sounds-prev-cell] {
    --slot-x: var(--sounds-slot-prev);
    --slot-scale: 1;
    --slot-opacity: 0.42;
    --slot-z: 1;
}
.sounds-showcase-cell[data-sounds-main-cell] {
    --slot-x: var(--sounds-slot-main);
    --slot-scale: 1;
    --slot-opacity: 1;
    --slot-z: 2;
}
.sounds-showcase-cell[data-sounds-next-cell] {
    --slot-x: var(--sounds-slot-next);
    --slot-scale: 1;
    --slot-opacity: 0.42;
    --slot-z: 1;
}
.sounds-showcase-cell[data-sounds-incoming-cell] {
    --slot-x: var(--sounds-slot-incoming);
    --slot-scale: 1;
    --slot-opacity: 0;
    --slot-z: 0;
    pointer-events: none;
}
.sounds-showcase-rail.is-sliding-next .sounds-showcase-cell[data-sounds-prev-cell] {
    --slot-x: var(--sounds-slot-slide-prev-exit);
    --slot-scale: 0.88;
    --slot-opacity: 0;
}
.sounds-showcase-rail.is-sliding-next .sounds-showcase-cell[data-sounds-main-cell] {
    --slot-x: var(--sounds-slot-slide-main-to-side);
    --slot-scale: 1;
    --slot-opacity: 0.38;
    --slot-z: 1;
}
.sounds-showcase-rail.is-sliding-next .sounds-showcase-cell[data-sounds-next-cell] {
    --slot-x: var(--sounds-slot-main);
    --slot-scale: 1;
    --slot-opacity: 1;
    --slot-z: 3;
}
.sounds-showcase-rail.is-sliding-next .sounds-showcase-cell[data-sounds-incoming-cell] {
    --slot-x: var(--sounds-slot-slide-incoming);
    --slot-opacity: 0.42;
    --slot-z: 1;
}
.sounds-showcase-rail.is-settling .sounds-showcase-cell,
.sounds-showcase-rail.is-settling .sounds-vinyl {
    transition: none !important;
}
.sounds-showcase-rail.is-settling .sounds-showcase-cell[data-sounds-incoming-cell] {
    visibility: hidden;
}
.sounds-vinyl {
    position: relative;
    flex-shrink: 0;
    transition:
        width 0.56s var(--sounds-slide-ease),
        height 0.56s var(--sounds-slide-ease);
}
.sounds-vinyl--side {
    width: var(--sounds-side-size);
    height: var(--sounds-side-size);
}
.sounds-vinyl--center {
    width: var(--sounds-center-size);
    height: var(--sounds-center-size);
}
.sounds-showcase-rail.is-sliding-next .sounds-showcase-cell[data-sounds-main-cell] .sounds-vinyl {
    width: var(--sounds-side-size);
    height: var(--sounds-side-size);
}
.sounds-showcase-rail.is-sliding-next .sounds-showcase-cell[data-sounds-next-cell] .sounds-vinyl {
    width: var(--sounds-center-size);
    height: var(--sounds-center-size);
}
.sounds-vinyl-disc {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #111;
    box-shadow:
        inset 0 0 0 2px rgba(0, 0, 0, 0.45),
        inset 0 0 18px rgba(0, 0, 0, 0.35),
        0 10px 28px rgba(59, 36, 29, 0.22);
}
.sounds-vinyl--center .sounds-vinyl-disc.is-spinning {
    animation: sounds-disc-spin 24s linear infinite;
    animation-play-state: paused;
}
.sounds-showcase.is-active .sounds-vinyl--center .sounds-vinyl-disc.is-spinning {
    animation-play-state: running;
}
.sounds-showcase-rail.is-sliding-next .sounds-vinyl--center .sounds-vinyl-disc.is-spinning {
    animation-play-state: paused;
}
.sounds-vinyl-art {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sounds-vinyl-grooves {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    background: repeating-radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0) 0 2px,
        rgba(255, 255, 255, 0.11) 2px 3px,
        rgba(255, 255, 255, 0) 3px 6px
    );
    mix-blend-mode: soft-light;
}
.sounds-vinyl-grooves::before {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.34);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.14),
        0 0 0 14px rgba(255, 255, 255, 0.09);
}
.sounds-vinyl--side .sounds-vinyl-grooves::before {
    opacity: 0.62;
}
.sounds-vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 16%;
    height: 16%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.17);
    box-shadow:
        inset 0 0 4px rgba(255, 255, 255, 0.2),
        0 0 0 1.5px rgba(255, 255, 255, 0.36);
    pointer-events: none;
}
.sounds-vinyl-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(2px, 11%, 5px);
    height: clamp(2px, 11%, 5px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.35);
}
.sounds-showcase-label {
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-align: center;
    transition: opacity 0.32s ease, transform 0.52s cubic-bezier(0.33, 1, 0.68, 1);
}
.sounds-showcase-label.is-sliding {
    opacity: 0;
    transform: translateY(6px);
}
@keyframes sounds-disc-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .sounds-vinyl--center .sounds-vinyl-disc.is-spinning {
        animation: none;
    }
    .sounds-showcase-cell,
    .sounds-vinyl,
    .sounds-showcase-label {
        transition: none !important;
    }
}
@media (max-width: 860px) {
    .story-panel:has(.sounds-showcase),
    .story-panel--sounds {
        overflow: hidden;
    }
    .sounds-showcase {
        overflow: hidden;
        aspect-ratio: auto;
        min-height: clamp(300px, 58vw, 380px);
        --sounds-side-size: clamp(68px, 19vw, 92px);
        --sounds-center-size: clamp(148px, 40vw, 192px);
        --sounds-slot-prev: 14%;
        --sounds-slot-main: 50%;
        --sounds-slot-next: 86%;
        --sounds-slot-incoming: 98%;
        --sounds-slot-slide-prev-exit: 4%;
        --sounds-slot-slide-main-to-side: 14%;
        --sounds-slot-slide-incoming: 86%;
    }
    .sounds-showcase-rail {
        overflow: hidden;
    }
    .sounds-showcase-stage {
        max-width: 100%;
        padding-inline: 6px;
    }
    .sounds-vinyl-disc {
        box-shadow:
            inset 0 0 0 2px rgba(0, 0, 0, 0.45),
            inset 0 0 18px rgba(0, 0, 0, 0.35);
    }
    .sounds-vinyl-grooves::before {
        box-shadow: none;
    }
}

/* Timer demo — Track Time, Stay Focused (iPhone → iPad) */
.timer-demo {
    --timer-phone-width: clamp(248px, 72%, 290px);
    --timer-tablet-width: clamp(268px, 78%, 320px);
    width: 100%;
    min-height: calc(var(--timer-phone-width) * 852 / 393 + 48px);
    padding: clamp(20px, 3.5vw, 28px) clamp(16px, 3vw, 24px);
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.timer-demo-stage {
    position: relative;
    width: 100%;
    min-height: calc(var(--timer-phone-width) * 852 / 393);
    display: flex;
    align-items: center;
    justify-content: center;
}
.timer-demo-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}
.timer-demo-scene.is-active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 860px) {
    .story-panel:has(.timer-demo) {
        overflow: hidden;
    }
    .timer-demo {
        --timer-phone-width: min(100%, clamp(220px, 76vw, 260px));
        --timer-tablet-width: min(100%, clamp(236px, 82vw, 280px));
        min-height: 0;
        overflow: hidden;
        padding-inline: clamp(12px, 3vw, 20px);
    }
    .timer-demo-stage {
        min-height: 0;
        height: auto;
    }
    .timer-demo-scene {
        position: absolute;
        inset: 0;
    }
    .timer-demo-scene.is-active {
        position: relative;
        inset: auto;
        width: 100%;
    }
}
.timer-demo-phone {
    position: relative;
    width: var(--timer-phone-width);
    --timer-device-width: var(--timer-phone-width);
    --timer-phone-top-gap: clamp(22px, 6.5cqi, 28px);
    --timer-phone-stack-lift: -36px;
    aspect-ratio: 393 / 852;
    flex-shrink: 0;
    container-type: inline-size;
    --timer-frame-radius: clamp(32px, 8vw, 40px);
    --timer-inner-radius: calc(var(--timer-frame-radius) - 3px);
    --timer-btn-size: clamp(32px, 10.2cqi, 38px);
    --timer-btn-gap: clamp(7px, 2.6cqi, 9px);
    border-radius: var(--timer-frame-radius);
    border: 3px solid #8a6a52;
    background: #3b241d;
    box-shadow: var(--story-phone-shadow), var(--story-phone-shadow-inset);
    overflow: hidden;
    isolation: isolate;
}
.timer-demo-tablet {
    position: relative;
    width: var(--timer-tablet-width);
    --timer-device-width: var(--timer-tablet-width);
    --timer-tablet-top-gap: clamp(28px, 4.5cqi, 36px);
    --timer-tablet-stack-lift: -28px;
    aspect-ratio: 834 / 1194;
    flex-shrink: 0;
    container-type: inline-size;
    --timer-tablet-frame-radius: clamp(22px, 5.5vw, 28px);
    --timer-tablet-inner-radius: calc(var(--timer-tablet-frame-radius) - 3px);
    --timer-btn-size: clamp(24px, 6.4cqi, 30px);
    --timer-btn-gap: clamp(6px, 2cqi, 8px);
    border-radius: var(--timer-tablet-frame-radius);
    border: 3px solid #8a6a52;
    background: #3b241d;
    box-shadow: var(--story-phone-shadow), var(--story-phone-shadow-inset);
    overflow: hidden;
    isolation: isolate;
}
.timer-demo-tablet .timer-demo-screen {
    border-radius: var(--timer-tablet-inner-radius);
}
/* Tablet — device-specific vertical rhythm */
.timer-demo-tablet .timer-demo-screen > .timer-demo-main {
    flex: 1 1 0;
    min-height: 0;
    padding: var(--timer-tablet-top-gap) 0 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    transform: translateY(var(--timer-tablet-stack-lift));
}
.timer-demo-tablet .timer-demo-stage-inner {
    max-height: 100%;
    transform: none;
}
.timer-demo-tablet .timer-demo-screen > .timer-demo-bottom-space {
    flex: 0 0 clamp(32px, 8%, 46px);
}
.timer-demo-tablet .timer-demo-backdrop {
    width: min(90cqi, 62cqi);
}
.timer-demo-tablet .timer-demo-backdrop-ring {
    width: 96%;
    height: 96%;
}
.timer-demo-tablet .timer-demo-backdrop-img {
    width: 91%;
    height: 91%;
}
.timer-demo-tablet .timer-demo-cat-wrap {
    width: 66%;
}
.timer-demo-tablet .timer-demo-digits {
    font-size: 10.8cqi;
}
.timer-demo-tablet .timer-demo-digits-wrap {
    margin: 2.5cqi 0 0;
}
.timer-demo-tablet .timer-demo-end-btn {
    max-width: 40cqi;
    font-size: 2.35cqi;
}
.timer-demo-tablet .timer-demo-screen > .timer-demo-controls {
    flex-shrink: 0;
    padding: 2.2cqi 3.2cqi 0;
    margin-top: 0;
    transform: translateY(var(--timer-tablet-stack-lift));
    min-height: calc(var(--timer-btn-size) + 4px);
}
.timer-demo-tablet .timer-demo-home-indicator {
    margin: 0 auto 1.6cqi;
}
/* iPhone — device-specific vertical rhythm */
.timer-demo-phone .shield-demo-statusbar {
    padding: 5.6cqi 5.6cqi 0.6cqi;
    font-size: 3.31cqi;
    color: rgba(59, 36, 29, 0.88);
}
.timer-demo-phone .shield-demo-status-icons {
    gap: 1.27cqi;
}
.timer-demo-phone .shield-demo-status-icons svg {
    width: 4.07cqi;
    height: auto;
}
.timer-demo-phone .shield-demo-status-icons svg:last-child {
    width: 6.36cqi;
}
.timer-demo-phone .timer-demo-top {
    padding: 4.2cqi 5.1cqi 1cqi;
}
.timer-demo-phone .timer-demo-screen > .timer-demo-main {
    flex: 1 1 auto;
    min-height: 0;
    justify-content: center;
    align-items: center;
    padding: var(--timer-phone-top-gap) 0 0;
    transform: translateY(var(--timer-phone-stack-lift));
}
.timer-demo-phone .timer-demo-stage-inner {
    transform: none;
}
.timer-demo-phone .timer-demo-backdrop {
    width: min(96cqi, 86cqi);
}
.timer-demo-phone .timer-demo-backdrop-ring {
    width: 96%;
    height: 96%;
}
.timer-demo-phone .timer-demo-backdrop-img {
    width: 91%;
    height: 91%;
}
.timer-demo-phone .timer-demo-cat-wrap {
    width: 70%;
}
.timer-demo-phone .timer-demo-digits-wrap {
    margin: 4.2cqi 0 0;
}
.timer-demo-phone .timer-demo-digits {
    font-size: 14.2cqi;
}
.timer-demo-phone .timer-demo-digits-glow {
    width: 62cqi;
    height: 16cqi;
}
.timer-demo-phone .timer-demo-screen > .timer-demo-controls {
    flex-shrink: 0;
    padding: 2.4cqi 3.56cqi 0;
    margin-top: 0;
    transform: translateY(var(--timer-phone-stack-lift));
}
.timer-demo-phone .timer-demo-end-btn {
    font-size: 2.9cqi;
    line-height: 1.1;
}
html[lang="fr"] .timer-demo-end-btn,
html[lang="da"] .timer-demo-end-btn,
html[lang="tr"] .timer-demo-end-btn {
    font-size: 2.25cqi;
    letter-spacing: -0.01em;
}
html[lang="fr"] .timer-demo-phone .timer-demo-end-btn,
html[lang="da"] .timer-demo-phone .timer-demo-end-btn,
html[lang="tr"] .timer-demo-phone .timer-demo-end-btn {
    font-size: 2.55cqi;
}
.timer-demo-phone .timer-demo-screen > .timer-demo-bottom-space {
    flex: 0 0 clamp(44px, 10%, 58px);
}
.timer-demo-phone .timer-demo-home-indicator {
    margin: 0 auto 1.6cqi;
}
.timer-demo-notch {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 10;
    width: 28%;
    max-width: 108px;
    height: 26px;
    transform: translateX(-50%);
    background: #3b241d;
    border-radius: 20px;
    pointer-events: none;
}
.timer-demo-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--timer-inner-radius);
    background: #f9f3e6;
}
.timer-demo-texture {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 22%, rgba(242, 242, 242, 0.55) 0 1px, transparent 1.5px),
        radial-gradient(circle at 72% 38%, rgba(242, 242, 242, 0.45) 0 1.5px, transparent 2px),
        radial-gradient(circle at 44% 68%, rgba(242, 242, 242, 0.4) 0 1px, transparent 1.5px),
        radial-gradient(circle at 86% 74%, rgba(242, 242, 242, 0.35) 0 2px, transparent 2.5px),
        radial-gradient(circle at 28% 84%, rgba(242, 242, 242, 0.35) 0 1px, transparent 1.5px);
    opacity: 0.9;
}
.timer-demo-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 7.1cqi 5.1cqi 1.5cqi;
}
.timer-demo-task {
    display: inline-flex;
    align-items: center;
    gap: 1.27cqi;
    font-size: 3.31cqi;
    font-weight: 500;
    color: #9b6d23;
}
.timer-demo-task-icon {
    width: 4.58cqi;
    height: 4.58cqi;
    flex-shrink: 0;
}
.timer-demo-music {
    width: 6.11cqi;
    height: 6.11cqi;
    object-fit: contain;
    opacity: 0.82;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.timer-demo.is-pause-phase .timer-demo-music {
    opacity: 0;
    visibility: hidden;
}
.timer-demo-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
}
.timer-demo-stage-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 2.55cqi;
}
.timer-demo-backdrop {
    position: relative;
    width: min(94cqi, 69.2cqi);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timer-demo-backdrop-chrome {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.timer-demo-backdrop-halo {
    position: absolute;
    width: 108%;
    height: 108%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.06) 58%,
        rgba(255, 255, 255, 0) 78%
    );
    filter: blur(10px);
}
.timer-demo-backdrop-ring {
    position: absolute;
    width: 92%;
    height: 92%;
    border-radius: 50%;
    border: 1.5px solid rgba(228, 222, 208, 0.55);
}
.timer-demo-backdrop-img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.42;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.timer-demo-cat-wrap {
    position: relative;
    width: 66%;
    aspect-ratio: 1;
    z-index: 1;
}
.timer-demo-cat {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}
.timer-demo-cat--idle {
    opacity: 0;
}
.timer-demo.is-pause-phase .timer-demo-cat--work {
    opacity: 0;
}
.timer-demo.is-pause-phase .timer-demo-cat--idle {
    opacity: 1;
}
.timer-demo-digits-wrap {
    position: relative;
    margin: 3.05cqi 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timer-demo-digits-glow {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 56cqi;
    height: 14.3cqi;
    max-width: 100%;
    transform: translate(-50%, -50%) rotate(-18deg);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.15) 35%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.15) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(2px);
    pointer-events: none;
}
.timer-demo-digits {
    position: relative;
    margin: 0;
    font-family: ui-rounded, 'SF Pro Rounded', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 12.7cqi;
    font-weight: 500;
    font-style: normal;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    line-height: 1;
}
.timer-demo-controls {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--timer-btn-gap);
    padding: 2.04cqi 3.56cqi 0;
    min-height: calc(var(--timer-btn-size) + 6px);
}
.timer-demo-bottom-space {
    flex: 0 0 clamp(72px, 17%, 104px);
}
.timer-demo-icon-btn {
    flex-shrink: 0;
    width: var(--timer-btn-size);
    height: var(--timer-btn-size);
    border-radius: 50%;
    background: #9b6d23;
    position: relative;
}
.timer-demo-icon-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.timer-demo-icon-btn--pause::after {
    width: 8px;
    height: 11px;
    border-left: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
}
.timer-demo-icon-btn--play::after {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
    transform: translate(-38%, -50%);
}
.timer-demo-end-btn {
    flex: 1;
    max-width: 44cqi;
    height: var(--timer-btn-size);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.55cqi;
    border-radius: 999px;
    border: 1px solid #9b6d23;
    background: rgba(155, 109, 35, 0.2);
    color: var(--text-primary);
    font-size: 2.54cqi;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    opacity: 0.5;
    white-space: nowrap;
}
.timer-demo.is-work-phase .timer-demo-icon-btn--play,
.timer-demo.is-pause-phase .timer-demo-icon-btn--pause {
    display: none;
}
.timer-demo-home-indicator {
    flex-shrink: 0;
    width: 32%;
    height: 1.02cqi;
    margin: 0 auto 2.04cqi;
    border-radius: 999px;
    background: rgba(59, 36, 29, 0.28);
}
@media (prefers-reduced-motion: reduce) {
    .timer-demo-cat {
        transition: none;
    }
}

/* Live Activity demo — Dynamic Island + Lock Screen (same phone layout as shield-demo) */
.live-demo {
    --live-phone-width: clamp(248px, 72%, 290px);
    width: 100%;
    min-height: calc(var(--live-phone-width) * 852 / 393 + 48px);
    padding: clamp(20px, 3.5vw, 28px) clamp(16px, 3vw, 24px);
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.live-demo-stage {
    position: relative;
    width: var(--live-phone-width);
    aspect-ratio: 393 / 852;
    margin: 0 auto;
    flex-shrink: 0;
}
.live-demo-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}
.live-demo-scene.is-active {
    opacity: 1;
    visibility: visible;
}
.live-demo-phone {
    position: relative;
    width: 100%;
    height: 100%;
    container-type: inline-size;
    --live-frame-radius: clamp(32px, 8vw, 40px);
    --live-inner-radius: calc(var(--live-frame-radius) - 3px);
    border-radius: var(--live-frame-radius);
    border: 3px solid #8a6a52;
    background: #3b241d;
    box-shadow: var(--story-phone-shadow), var(--story-phone-shadow-inset);
    overflow: hidden;
    isolation: isolate;
}
.live-demo-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #eadfce;
    border-radius: var(--live-inner-radius);
}
.live-demo-scene--lock .live-demo-screen {
    background: #1a110e;
}
.live-demo-scene--lock .shield-demo-statusbar {
    color: rgba(249, 243, 230, 0.92);
}
.live-demo-wallpaper--home,
.live-demo-wallpaper--lock {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}
.live-demo-wallpaper--home {
    background: #eadfce;
}
.live-demo-wallpaper--lock {
    background: #1a110e;
}
/* Home screen app grid — island scene (legacy icon-only grid; island scene uses shield-demo-apps) */
.live-demo-homescreen {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: clamp(6px, 1.5vw, 12px) clamp(14px, 3.2vw, 20px) clamp(4px, 1vw, 8px);
}
.live-demo-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-content: start;
    gap: clamp(8px, 2vw, 14px) clamp(4px, 1.2vw, 8px);
}
.live-demo-app-icon {
    display: block;
    width: clamp(42px, 12vw, 54px);
    height: clamp(42px, 12vw, 54px);
    margin: 0 auto;
    border-radius: 22%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.live-demo-app-icon--calendar { background: linear-gradient(180deg, #fff 0%, #f2f2f7 100%); }
.live-demo-app-icon--photos {
    background: linear-gradient(135deg, #ff9a6c, #ff6b8a 40%, #c86dd7 70%, #6e8efb);
}
.live-demo-app-icon--mail { background: linear-gradient(180deg, #5ac8fa, #007aff); }
.live-demo-app-icon--music { background: linear-gradient(180deg, #ff6b9d, #c44569); }
.live-demo-app-icon--notes { background: linear-gradient(180deg, #fff59d, #ffc107); }
.live-demo-app-icon--maps { background: linear-gradient(180deg, #7dcea0, #27ae60); }
.live-demo-app-icon--weather { background: linear-gradient(180deg, #74b9ff, #0984e3); }
.live-demo-app-icon--reminders { background: linear-gradient(180deg, #fff, #dfe6e9); }
/* Compact Dynamic Island — proportional to phone width (198/393) */
.live-demo-di--compact {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 50.4cqi;
    max-width: 198px;
    height: 8.7cqi;
    max-height: 34px;
    padding: 0 2.8cqi;
    border-radius: 999px;
    background: #000;
    color: #fff;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transform: translateX(-50%);
    pointer-events: none;
}
.live-demo-di-icon {
    display: block;
    width: 4.1cqi;
    max-width: 16px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 4px;
    object-fit: contain;
    flex: 0 0 auto;
}
.live-demo-di-time {
    flex: 0 0 auto;
    font-family: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: clamp(11px, 3.8cqi, 15px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
/* Lock screen content — positions scale with phone via container units */
.live-demo-lock-clock-wrap {
    position: absolute;
    top: 14.32%;
    left: 0;
    width: 100%;
    z-index: 2;
    text-align: center;
    padding: 0 6.1cqi;
    box-sizing: border-box;
    pointer-events: none;
}
.live-demo-lock-clock {
    margin: 0;
    font-family: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 20.87cqi;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
    color: #f9f3e6;
    line-height: 0.95;
}
.live-demo-lock-date {
    margin: 0.94% 0 0;
    font-size: clamp(13px, 4.58cqi, 18px);
    font-weight: 500;
    color: rgba(249, 243, 230, 0.72);
}
.live-demo-la-card {
    position: absolute;
    top: 66.67%;
    left: 4.07cqi;
    width: 91.86cqi;
    z-index: 2;
    box-sizing: border-box;
    padding: 1.41% 4.07cqi;
    border-radius: clamp(14px, 4.58cqi, 18px);
    background: rgba(249, 243, 230, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #f9f3e6;
    box-shadow:
        inset 0 0 0 1px rgba(249, 243, 230, 0.18),
        0 4px 18px rgba(0, 0, 0, 0.22);
    pointer-events: none;
}
.live-demo-la-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3.05cqi;
}
.live-demo-la-icon {
    display: block;
    width: 9.16cqi;
    max-width: 36px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: contain;
    flex: 0 0 auto;
}
.live-demo-la-title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(14px, 5.09cqi, 20px);
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-demo-la-time {
    flex: 0 0 auto;
    font-family: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: clamp(22px, 8.14cqi, 32px);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.live-demo-la-sub {
    margin: 1.17% 0 0;
    font-size: clamp(10px, 3.05cqi, 12px);
    font-weight: 400;
    line-height: 1.3;
    color: rgba(249, 243, 230, 0.65);
}
.live-demo-home-bar {
    position: absolute;
    bottom: 1.41%;
    left: 50%;
    transform: translateX(-50%);
    width: 32.06cqi;
    max-width: 126px;
    height: 4px;
    border-radius: 999px;
    background: rgba(249, 243, 230, 0.45);
    z-index: 2;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    .live-demo-scene {
        transition: none;
    }
}

/* Shield demo — Block External Distractions */
.shield-demo {
    --shield-phone-width: clamp(248px, 72%, 290px);
    width: 100%;
    min-height: calc(var(--shield-phone-width) * 852 / 393 + 48px);
    padding: clamp(20px, 3.5vw, 28px) clamp(16px, 3vw, 24px);
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.shield-demo-phone {
    position: relative;
    width: var(--shield-phone-width);
    aspect-ratio: 393 / 852;
    flex-shrink: 0;
    container-type: inline-size;
    --shield-frame-radius: clamp(32px, 8vw, 40px);
    --shield-inner-radius: calc(var(--shield-frame-radius) - 3px);
    border-radius: var(--shield-frame-radius);
    border: 3px solid #8a6a52;
    background: #3b241d;
    box-shadow: var(--story-phone-shadow), var(--story-phone-shadow-inset);
    overflow: hidden;
    isolation: isolate;
}
.shield-demo-notch {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 10;
    width: 28%;
    max-width: 108px;
    height: 26px;
    transform: translateX(-50%);
    background: #3b241d;
    border-radius: 20px;
    pointer-events: none;
}
.shield-demo-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #eadfce;
    border-radius: var(--shield-inner-radius);
}
.shield-demo-statusbar {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px 8px;
    color: rgba(59, 36, 29, 0.88);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.shield-demo-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}
.shield-demo-wallpaper {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #eadfce;
}
.shield-demo-apps {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-content: start;
    gap: clamp(8px, 2vw, 14px) clamp(4px, 1.2vw, 8px);
    padding: clamp(6px, 1.5vw, 12px) clamp(14px, 3.2vw, 20px) clamp(4px, 1vw, 8px);
}
.shield-demo-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}
.shield-demo-app-name {
    font-size: 10px;
    line-height: 1.2;
    color: rgba(59, 36, 29, 0.82);
    text-shadow: none;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shield-demo-app-icon {
    display: block;
    width: clamp(42px, 12vw, 54px);
    height: clamp(42px, 12vw, 54px);
    border-radius: 22%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
/* App icon grid — cqi scale aligned with widget demo */
.shield-demo-phone .shield-demo-apps,
.live-demo-phone .shield-demo-apps {
    gap: 2.3cqi 1.2cqi;
    padding: 3.5cqi 4.1cqi 0;
}
.shield-demo-phone .shield-demo-app,
.live-demo-phone .shield-demo-app {
    gap: 1.25cqi;
}
.shield-demo-phone .shield-demo-app-name,
.live-demo-phone .shield-demo-app-name {
    font-size: 2.55cqi;
}
.shield-demo-phone .shield-demo-app-icon,
.live-demo-phone .shield-demo-app-icon {
    width: 15cqi;
    height: 15cqi;
    box-shadow: 0 0.55cqi 1.65cqi rgba(0, 0, 0, 0.16);
}
.shield-demo-phone .shield-demo-dock .shield-demo-app-icon {
    width: 15cqi;
    height: 15cqi;
    box-shadow: 0 0.45cqi 1.2cqi rgba(0, 0, 0, 0.14);
}
.shield-demo-phone .shield-demo-dock {
    margin: 0 3.6cqi 1.8cqi;
    padding: 1.8cqi 2.5cqi;
    border-radius: 6.1cqi;
}
.shield-demo-phone .shield-demo-home-indicator {
    height: 0.45cqi;
    margin: 0 auto 1.8cqi;
}
.shield-demo-app-icon img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22%;
    object-fit: cover;
}
.shield-demo-app-icon--calendar { background: linear-gradient(180deg, #fff 0%, #f2f2f7 100%); }
.shield-demo-app-icon--photos {
    background: linear-gradient(135deg, #ff9a6c, #ff6b8a 40%, #c86dd7 70%, #6e8efb);
}
.shield-demo-app-icon--mail { background: linear-gradient(180deg, #5ac8fa, #007aff); }
.shield-demo-app-icon--music { background: linear-gradient(180deg, #ff6b9d, #c44569); }
.shield-demo-app-icon--notes { background: linear-gradient(180deg, #fff59d, #ffc107); }
.shield-demo-app-icon--maps { background: linear-gradient(180deg, #7dcea0, #27ae60); }
.shield-demo-app-icon--weather { background: linear-gradient(180deg, #74b9ff, #0984e3); }
.shield-demo-app-icon--reminders { background: linear-gradient(180deg, #fff, #dfe6e9); }
.shield-demo-app-icon--tv { background: linear-gradient(180deg, #2d3436, #000); }
.shield-demo-app-icon--podcasts { background: linear-gradient(180deg, #a29bfe, #6c5ce7); }
.shield-demo-app-icon--wallet { background: linear-gradient(180deg, #636e72, #2d3436); }
.shield-demo-app-icon--health { background: linear-gradient(180deg, #ff7675, #d63031); }
.shield-demo-app-icon--settings { background: linear-gradient(180deg, #b2bec3, #636e72); }
.shield-demo-app-icon--files { background: linear-gradient(180deg, #74b9ff, #0984e3); }
.shield-demo-app-icon--phone { background: linear-gradient(180deg, #55efc4, #00b894); }
.shield-demo-app-icon--safari { background: linear-gradient(180deg, #74b9ff, #0984e3); }
.shield-demo-app-icon--messages { background: linear-gradient(180deg, #55efc4, #00b894); }
.shield-demo-dock {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 clamp(10px, 2.5vw, 14px) clamp(6px, 1.5vw, 10px);
    padding: clamp(7px, 1.8vw, 10px) clamp(10px, 2.2vw, 14px);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.42);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.55),
        0 4px 16px rgba(59, 36, 29, 0.08);
}
.shield-demo-home-indicator {
    flex-shrink: 0;
    width: 32%;
    height: 4px;
    margin: 0 auto clamp(8px, 2vw, 12px);
    border-radius: 999px;
    background: rgba(59, 36, 29, 0.28);
}
.shield-demo-app-icon--social {
    background:
        radial-gradient(circle at 30% 108%, #ffd600 0 18%, transparent 19%),
        radial-gradient(circle at 78% 90%, #ff3b7a 0 22%, transparent 23%),
        radial-gradient(circle at 8% 28%, #a855f7 0 24%, transparent 25%),
        linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.shield-demo-app--social.is-tapped .shield-demo-app-icon--social {
    transform: scale(0.92);
    transition: transform 0.15s ease;
}
.shield-demo.is-social-pulse .shield-demo-app--social .shield-demo-app-icon--social {
    animation: shield-social-pulse 1.1s ease-in-out infinite;
}
@keyframes shield-social-pulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18); }
    50% { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55), 0 4px 16px rgba(0, 0, 0, 0.22); }
}
.shield-demo-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    border-radius: var(--shield-inner-radius);
    overflow: hidden;
    padding: 0;
    background: rgba(242, 242, 247, 0.78);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    backdrop-filter: blur(18px) saturate(1.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s ease;
}
.shield-demo.is-shield-open .shield-demo-overlay {
    opacity: 1;
    visibility: visible;
}
.shield-demo-shield {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.38s ease;
}
.shield-demo.is-shield-open .shield-demo-shield {
    opacity: 1;
}
.shield-demo-shield-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(48px, 14%, 72px) 22px 16px;
    text-align: center;
}
.shield-demo-shield-actions {
    flex-shrink: 0;
    width: 100%;
    padding: 0 22px calc(clamp(28px, 8%, 40px) + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
}
.shield-demo-shield-icon {
    width: 72px;
    height: 72px;
    border-radius: 18%;
    box-shadow: 0 6px 20px rgba(59, 36, 29, 0.12);
    margin-bottom: 18px;
}
.shield-demo-shield-title {
    margin: 0 0 8px;
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1c1c1e;
    line-height: 1.25;
}
.shield-demo-shield-subtitle {
    margin: 0;
    font-size: clamp(0.82rem, 1.9vw, 0.92rem);
    line-height: 1.45;
    color: rgba(60, 60, 67, 0.72);
    max-width: 22em;
}
.shield-demo-shield-primary {
    width: 100%;
    margin: 0;
    padding: 13px 16px;
    border: none;
    border-radius: 12px;
    background: #9a6b47;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 14px rgba(154, 107, 71, 0.28);
    transition: transform 0.15s ease, background 0.15s ease;
}
.shield-demo.is-pressing-gotit .shield-demo-shield-primary {
    transform: scale(0.98);
    background: #8a5f3f;
}
.shield-demo-shield-secondary {
    display: block;
    width: 100%;
    margin: 12px 0 0;
    padding: 6px 12px;
    border: none;
    background: none;
    color: rgba(60, 60, 67, 0.72);
    font-size: 0.92rem;
    font-weight: 500;
    font-family: inherit;
    text-align: center;
}
.shield-demo-pointer {
    position: absolute;
    z-index: 8;
    left: var(--ptr-x, 50%);
    top: var(--ptr-y, 50%);
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: scale(0.6);
    transition:
        left 0.52s cubic-bezier(0.32, 0.72, 0, 1),
        top 0.52s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.25s ease,
        transform 0.2s ease;
    pointer-events: none;
}
.shield-demo-pointer::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
}
.shield-demo-pointer.is-visible {
    opacity: 1;
    transform: scale(1);
}
.shield-demo-pointer.is-pressing {
    transform: scale(0.82);
}
@media (prefers-reduced-motion: reduce) {
    .shield-demo.is-social-pulse .shield-demo-app--social .shield-demo-app-icon--social {
        animation: none;
    }
    .shield-demo-overlay,
    .shield-demo-shield,
    .shield-demo-pointer {
        transition: none !important;
    }
}

/* Reward scene — Reward Your Good Habits */
.reward-scene {
    position: relative;
    width: 100%;
    aspect-ratio: 6 / 5;
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
}
.reward-scene-fireworks {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.reward-scene-fireworks svg {
    width: 100% !important;
    height: 100% !important;
}
.reward-scene-bubble {
    position: absolute;
    z-index: 3;
    right: clamp(20%, 24vw, 30%);
    bottom: clamp(34%, 36vw, 42%);
    display: flex;
    align-items: center;
    gap: clamp(14px, 3vw, 22px);
    padding: clamp(12px, 2.5vw, 16px) clamp(18px, 4vw, 28px);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    box-shadow:
        0 10px 36px rgba(214, 120, 120, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.85);
}
.reward-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(1.35rem, 3.8vw, 1.9rem);
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.reward-icon {
    font-size: 0.92em;
    line-height: 1;
}
.reward-stat-points .reward-value {
    color: #5a9e56;
}
.reward-stat-intimacy .reward-value {
    color: #d64545;
}
.reward-scene-character {
    position: absolute;
    z-index: 2;
    right: -2%;
    bottom: -4%;
    width: min(46%, 240px);
    height: auto;
    pointer-events: none;
    user-select: none;
}
@media (max-width: 860px) {
    .reward-scene-bubble {
        right: clamp(22%, 26vw, 34%);
        bottom: clamp(38%, 40vw, 46%);
    }
}
@media (max-width: 560px) {
    .reward-scene-bubble {
        right: clamp(28%, 32vw, 42%);
        bottom: clamp(42%, 44vw, 52%);
        gap: 10px;
        padding: 8px 14px;
    }
    .reward-scene-character {
        width: min(54%, 210px);
    }
}

.story-copy p:not(.story-headline) {
    margin: 0;
    color: rgba(59, 36, 29, 0.85);
    line-height: 1.75;
    font-size: 1.02rem;
}
.story-copy p:not(.story-headline) + .story-mode-list {
    margin-top: 16px;
}
.story-copy .story-mode-list + p {
    margin-top: 16px;
}
.story-copy .story-headline {
    margin: 0 0 32px;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(1.375rem, 2.4vw, 1.625rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--accent);
    letter-spacing: -0.01em;
}
html[lang="zh-CN"] .story-copy .story-headline {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", var(--font-body);
    font-style: normal;
}
.story-mode-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.story-mode-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 14px;
    border-left: 2px solid rgba(122, 30, 30, 0.35);
}
.story-mode-list strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}
.story-mode-list span {
    font-size: 0.98rem;
    color: rgba(59, 36, 29, 0.85);
    line-height: 1.65;
}
.story-mode-note {
    font-style: normal;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.story-copy .story-note {
    margin-top: 12px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-style: italic;
}
@media (max-width: 860px) {
    .story-item,
    .story-item.reverse {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 24px;
        margin-bottom: 56px;
    }
    .story-item.reverse .story-media,
    .story-item.reverse .story-copy { order: unset; }
    .story-media,
    .story-copy,
    .story-panel {
        min-width: 0;
        max-width: 100%;
    }
    .story-copy .story-headline {
        margin-bottom: 20px;
    }
    .story-section .container {
        overflow-x: clip;
    }
}

/* Privacy First showcase — four animated pillar cards */
.privacy-showcase {
    width: 100%;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.privacy-showcase-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2.4vw, 18px);
}
.privacy-showcase-card {
    --privacy-text: #f9f3e6;
    --privacy-sub: rgba(249, 243, 230, 0.72);
    --privacy-accent: #e8c9a8;
    --privacy-bg: linear-gradient(145deg, #4a2820 0%, #321a14 52%, #1f100d 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(14px, 2.4vw, 18px);
    min-height: clamp(128px, 20vw, 148px);
    padding: clamp(22px, 3.2vw, 28px) clamp(18px, 2.8vw, 22px);
    border-radius: 16px;
    background: var(--privacy-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 10px 28px rgba(26, 14, 10, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: hidden;
    cursor: default;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.privacy-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        118deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.04) 28%,
        transparent 48%,
        transparent 100%
    );
    pointer-events: none;
}
.story-item:not(.revealed) .privacy-showcase-card {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
}
.privacy-showcase-card:nth-child(1) {
    --privacy-accent: #f0dcc4;
    --privacy-bg: linear-gradient(145deg, #5c2e28 0%, #3d1c18 48%, #261010 100%);
}
.privacy-showcase-card:nth-child(2) {
    --privacy-accent: #e8c9a0;
    --privacy-bg: linear-gradient(145deg, #4a3528 0%, #352418 50%, #22160f 100%);
}
.privacy-showcase-card:nth-child(3) {
    --privacy-accent: #d4b896;
    --privacy-bg: linear-gradient(145deg, #3d2a22 0%, #2a1b16 52%, #18100d 100%);
}
.privacy-showcase-card:nth-child(4) {
    --privacy-accent: #ecc8b0;
    --privacy-bg: linear-gradient(145deg, #523028 0%, #3a2018 50%, #241410 100%);
}
.story-item.revealed .privacy-showcase-card {
    opacity: 1;
    animation: privacy-card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.12s + var(--privacy-i, 0) * 0.11s);
}
.privacy-showcase-card:hover .privacy-showcase-icon {
    transform: scale(1.1);
}
@keyframes privacy-card-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.privacy-showcase-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(46px, 10vw, 54px);
    height: clamp(46px, 10vw, 54px);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--privacy-accent);
    flex-shrink: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 4px 12px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.privacy-showcase-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.privacy-showcase-card strong {
    font-size: clamp(1.02rem, 2.4vw, 1.14rem);
    font-weight: 700;
    color: var(--privacy-text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.privacy-showcase-card-body span {
    font-size: clamp(0.82rem, 2vw, 0.9rem);
    color: var(--privacy-sub);
    line-height: 1.45;
}
.story-copy .story-note a {
    color: var(--accent);
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 30, 30, 0.35);
    transition: border-color 0.2s ease, color 0.2s ease;
}
.story-copy .story-note a:hover {
    color: var(--as-terracotta-light);
    border-bottom-color: currentColor;
}
#story-privacy {
    margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
    .privacy-showcase-card,
    .story-item:not(.revealed) .privacy-showcase-card {
        opacity: 1;
        transform: none;
    }
    .story-item.revealed .privacy-showcase-card {
        animation: none;
    }
    .privacy-showcase-card:hover .privacy-showcase-icon {
        transform: none;
    }
}
@media (max-width: 860px) {
    .privacy-showcase-grid {
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .privacy-showcase-card {
        min-height: 120px;
    }
}

/* Story exit → feature-en.html system map */
.story-section .system-bridge {
    margin-top: clamp(48px, 7vw, 64px);
}
.system-bridge-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 32px);
    padding: clamp(22px, 3.2vw, 28px) clamp(24px, 3.5vw, 32px);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(222, 186, 134, 0.45);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.system-bridge-card:hover {
    border-color: rgba(122, 30, 30, 0.28);
    box-shadow: 0 10px 28px rgba(59, 36, 29, 0.08);
    transform: translateY(-2px);
}
.system-bridge-copy {
    flex: 1 1 auto;
    min-width: 0;
}
.system-bridge-eyebrow {
    margin: 0 0 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.system-bridge-copy h3 {
    margin: 0 0 8px;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.system-bridge-desc {
    margin: 0;
    max-width: 56ch;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.system-bridge-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(122, 30, 30, 0.07);
    border: 1px solid rgba(122, 30, 30, 0.22);
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.system-bridge-card:hover .system-bridge-cta {
    background: rgba(122, 30, 30, 0.12);
    border-color: rgba(122, 30, 30, 0.35);
}
@media (max-width: 640px) {
    .system-bridge-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .system-bridge-cta {
        align-self: flex-start;
    }
}
@media (prefers-reduced-motion: reduce) {
    .system-bridge-card:hover {
        transform: none;
    }
}

/* Landing pages — decision cards */
.landing-section {
    padding: clamp(56px, 7vw, 80px) 20px clamp(48px, 6vw, 64px);
    background: var(--bg-primary);
}
.landing-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(36px, 5vw, 48px);
}
.landing-header h2 {
    font-size: var(--section-title);
    font-weight: 300;
    color: var(--text-primary);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.landing-header p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.4vw, 20px);
    max-width: var(--content-max);
    margin: 0 auto;
}
.landing-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    padding: clamp(24px, 3.5vw, 28px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(222, 186, 134, 0.45);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 8px 24px rgba(59, 36, 29, 0.05);
}
.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 36, 29, 0.09);
    border-color: rgba(122, 30, 30, 0.22);
}
.landing-card--highlight {
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(122, 30, 30, 0.06), transparent 55%),
        rgba(255, 255, 255, 0.72);
}
.landing-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.landing-card h3 {
    margin: 0;
    font-size: clamp(1.02rem, 1.9vw, 1.1rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
}
.landing-card > p {
    margin: 0;
    flex: 1 1 auto;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--text-secondary);
}
.landing-link {
    margin-top: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.85;
    transition: opacity 0.2s ease, gap 0.2s ease;
}
.landing-card:hover .landing-link {
    opacity: 1;
}
@media (max-width: 860px) {
    .landing-grid {
        grid-template-columns: 1fr;
    }
}

/* Reading — editorial guides */
.reading-section {
    padding: clamp(48px, 6vw, 64px) 20px clamp(64px, 8vw, 88px);
    background: var(--bg-primary);
}
.reading-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    max-width: var(--content-max);
    margin: 0 auto clamp(28px, 4vw, 36px);
}
.reading-header-copy {
    flex: 1 1 300px;
    max-width: 560px;
}
.reading-header h2 {
    font-size: var(--section-title);
    font-weight: 300;
    color: var(--text-primary);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.reading-header p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.reading-browse {
    flex-shrink: 0;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(122, 30, 30, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}
.reading-browse:hover {
    border-bottom-color: var(--accent);
}
.reading-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 24px);
    max-width: var(--content-max);
    margin: 0 auto clamp(28px, 4vw, 36px);
}
.reading-featured {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(28px, 4vw, 36px);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    background:
        radial-gradient(ellipse 70% 55% at 15% 0%, rgba(180, 110, 72, 0.14), transparent 58%),
        linear-gradient(158deg, #4a2f26 0%, #321a16 52%, #1f110e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(26, 14, 10, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reading-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(26, 14, 10, 0.24);
}
.reading-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(249, 243, 230, 0.72);
}
.reading-featured h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 600;
    line-height: 1.3;
    color: #f9f3e6;
    letter-spacing: -0.015em;
}
.reading-featured > p {
    margin: 0;
    flex: 1;
    max-width: 52ch;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(249, 243, 230, 0.78);
}
.reading-cta {
    margin-top: auto;
    padding-top: clamp(14px, 2vw, 18px);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: right;
    font-size: 0.94rem;
    font-weight: 600;
    color: #f0dcc4;
}
.reading-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(222, 186, 134, 0.45);
    background: rgba(255, 255, 255, 0.55);
}
.reading-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 14px;
    align-items: start;
    padding: clamp(18px, 2.8vw, 22px) clamp(20px, 3vw, 24px);
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(107, 46, 31, 0.1);
    transition: background 0.2s ease;
}
.reading-item:last-child {
    border-bottom: none;
}
.reading-item:hover {
    background: rgba(255, 255, 255, 0.85);
}
.reading-item-tag {
    padding-top: 2px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    min-width: 3.5rem;
}
.reading-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.reading-item-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
}
.reading-item-teaser {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.reading-item-arrow {
    padding-top: 2px;
    font-size: 0.95rem;
    color: rgba(59, 36, 29, 0.35);
    transition: transform 0.2s ease, color 0.2s ease;
}
.reading-item:hover .reading-item-arrow {
    color: var(--accent);
    transform: translateX(3px);
}
@media (min-width: 861px) {
    .reading-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: stretch;
    }
    .reading-featured {
        min-height: 100%;
    }
}
@media (max-width: 640px) {
    .reading-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: clamp(20px, 3.5vw, 28px);
    }
    .reading-header-copy {
        flex: 0 1 auto;
    }
    .reading-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }
    .reading-item-tag {
        grid-column: 1 / -1;
        min-width: 0;
    }
    .reading-item-body {
        grid-column: 1;
    }
    .reading-item-arrow {
        grid-column: 2;
        grid-row: 2;
    }
}

/* Trust — founder letter + user voices */
.trust-section {
    padding: clamp(64px, 9vw, 96px) 20px clamp(72px, 10vw, 100px);
    background: var(--bg-primary);
}
.trust-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(40px, 6vw, 56px);
}
.trust-header h2 {
    font-size: var(--section-title);
    font-weight: 300;
    margin: 0 0 12px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.trust-header p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.trust-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 48px);
    max-width: var(--content-max);
    margin: 0 auto;
}
.trust-founder {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.trust-section.revealed .trust-founder {
    opacity: 1;
    transform: translateY(0);
}
.trust-founder-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 5vw, 48px) clamp(28px, 4.5vw, 44px);
    border-radius: 22px;
    background:
        radial-gradient(ellipse 75% 55% at 12% 0%, rgba(180, 110, 72, 0.22), transparent 58%),
        radial-gradient(ellipse 60% 45% at 88% 100%, rgba(59, 36, 29, 0.35), transparent 52%),
        linear-gradient(158deg, #4a2f26 0%, #321a16 48%, #1f110e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(26, 14, 10, 0.22);
    color: #f9f3e6;
}
.trust-founder-label {
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(249, 243, 230, 0.72);
}
.trust-founder-quote {
    margin: 0 0 20px;
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: #f9f3e6;
}
.trust-founder-text {
    flex: 1 1 auto;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.78;
    color: rgba(249, 243, 230, 0.78);
}
.trust-founder-footer {
    margin-top: auto;
    padding-top: clamp(28px, 4vw, 36px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(249, 243, 230, 0.14);
}
.trust-founder-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f9f3e6;
}
.trust-founder-info span {
    font-size: 0.88rem;
    color: rgba(249, 243, 230, 0.62);
}
.trust-founder-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.94rem;
    font-weight: 600;
    color: #f0dcc4;
    text-decoration: none;
    border-bottom: 1px solid rgba(240, 220, 196, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.trust-founder-link:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.55);
}
.trust-voices {
    margin: 0;
}
.trust-voices-title {
    margin: 0 0 clamp(20px, 3vw, 28px);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.trust-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2.4vw, 18px);
}
.trust-testimonial {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: clamp(20px, 3vw, 24px) clamp(18px, 2.8vw, 22px);
    border-radius: 18px;
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(255, 255, 255, 0.65), transparent 55%),
        rgba(249, 243, 230, 0.96);
    border: 1px solid rgba(222, 186, 134, 0.55);
    box-shadow: 0 8px 22px rgba(59, 36, 29, 0.07);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.trust-section.revealed .trust-testimonial:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}
.trust-section.revealed .trust-testimonial:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}
.trust-section.revealed .trust-testimonial:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.32s;
}
.trust-testimonial-tag {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.trust-testimonial-quote {
    margin: 0;
    flex: 1 1 auto;
    font-size: clamp(0.94rem, 2vw, 1.02rem);
    line-height: 1.65;
    color: rgba(59, 36, 29, 0.88);
}
.trust-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 4px;
}
.trust-testimonial-author {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.trust-testimonial-author::before {
    content: '— ';
    font-weight: 400;
    opacity: 0.65;
}
.trust-testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    color: #c9922e;
}
.trust-testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transform-origin: center center;
}
@media (prefers-reduced-motion: no-preference) {
    .trust-testimonial:hover .trust-testimonial-stars svg {
        animation: trust-star-pop 0.52s cubic-bezier(0.34, 1.35, 0.64, 1) backwards;
    }
    .trust-testimonial:hover .trust-testimonial-stars svg:nth-child(1) { animation-delay: 0s; }
    .trust-testimonial:hover .trust-testimonial-stars svg:nth-child(2) { animation-delay: 0.07s; }
    .trust-testimonial:hover .trust-testimonial-stars svg:nth-child(3) { animation-delay: 0.14s; }
    .trust-testimonial:hover .trust-testimonial-stars svg:nth-child(4) { animation-delay: 0.21s; }
    .trust-testimonial:hover .trust-testimonial-stars svg:nth-child(5) { animation-delay: 0.28s; }
}
@keyframes trust-star-pop {
    0% {
        transform: scale(0.55) rotate(-18deg);
        opacity: 0.35;
    }
    55% {
        transform: scale(1.22) rotate(8deg);
        filter: drop-shadow(0 0 4px rgba(201, 146, 46, 0.75));
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: none;
    }
}
@media (min-width: 861px) {
    .trust-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
        gap: clamp(28px, 3.5vw, 40px);
        align-items: stretch;
    }
    .trust-voices {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }
    .trust-testimonials {
        flex: 1 1 auto;
        align-content: start;
    }
}
@media (max-width: 860px) {
    .trust-founder-quote {
        max-width: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .trust-founder,
    .trust-testimonial {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 860px) {
    .trust-founder-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FAQ */
.faq-section {
    padding: clamp(56px, 7vw, 72px) 20px clamp(64px, 8vw, 80px);
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-primary);
}
.faq-section h2 {
    font-weight: 300;
    font-size: var(--section-title);
    text-align: center;
    margin-bottom: 28px;
}
.faq-item {
    border-bottom: 1px solid rgba(107, 46, 31, 0.15);
    padding: 16px 0;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent);
    opacity: 0.55;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    opacity: 1;
}
.faq-item p {
    margin: 12px 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}
.faq-item p a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(122, 30, 30, 0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}
.faq-item p a:hover {
    text-decoration-color: var(--accent);
}

/* CTA */
.draft-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(145deg, var(--as-terracotta), #4A1F14);
    color: #fff;
}
.draft-cta h2 {
    font-weight: 300;
    font-size: var(--section-title);
    margin: 0 0 12px;
}
.draft-cta p { opacity: 0.9; margin-bottom: 24px; }
.draft-cta-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.draft-cta .draft-trust-pill {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.92);
}

/* Sticky bar */
.sticky-download {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    width: 100%;
    box-sizing: border-box;
    background: rgba(59, 36, 29, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-download.visible { transform: translateY(0); }
.sticky-download-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    box-sizing: border-box;
}
.sticky-download-center {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px 12px;
    max-width: 100%;
}
.sticky-download-line {
    margin: 0;
    font-size: clamp(0.88rem, 2.2vw, 0.96rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-align: center;
}
.sticky-download-badge {
    flex: 0 0 auto;
    line-height: 0;
}
.sticky-download .app-store-badge img,
.sticky-download-badge img {
    display: block;
    height: 40px;
    width: auto;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.sticky-download-badge:hover img {
    transform: translateY(-1px);
    opacity: 0.92;
}
.sticky-close {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    margin: 0;
    transition: color 0.2s ease;
}
.sticky-close:hover {
    color: rgba(255, 255, 255, 0.9);
}
body.draft-page.has-sticky-download .footer {
    padding-bottom: calc(48px + var(--sticky-download-height) + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 640px) {
    :root {
        --sticky-download-height: 76px;
    }
    .sticky-download {
        padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    }
    .sticky-download-inner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: none;
        min-height: 36px;
        padding-right: 28px;
        box-sizing: border-box;
    }
    .sticky-download-center {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 5px 10px;
        min-width: 0;
        max-width: 100%;
    }
    .sticky-close {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding: 4px;
    }
    .sticky-download-line {
        white-space: normal;
        max-width: none;
        overflow: visible;
        text-overflow: unset;
        font-size: clamp(0.78rem, 3.2vw, 0.88rem);
        line-height: 1.3;
        text-align: center;
    }
    .sticky-download .app-store-badge img,
    .sticky-download-badge img {
        height: 32px;
    }
}

.footer {
    background: var(--bg-primary);
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid rgba(222, 186, 134, 0.45);
}
.footer-links { margin-bottom: 20px; }
.footer-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}
.footer-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer p { margin-top: 20px; font-size: 0.9em; }

/* Home Screen widgets demo — phone mock with CSS-drawn widget tiles */
.widget-demo {
    --widget-phone-width: clamp(248px, 72%, 290px);
    --widget-bg: rgb(252, 248, 241);
    --widget-chart: rgb(33, 56, 66);
    --widget-text: rgb(28, 28, 30);
    --widget-secondary: rgba(60, 60, 67, 0.6);
    width: 100%;
    min-height: calc(var(--widget-phone-width) * 852 / 393 + 48px);
    padding: clamp(20px, 3.5vw, 28px) clamp(16px, 3vw, 24px);
    background: rgba(249, 243, 230, 0.95);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.widget-demo-phone {
    position: relative;
    width: var(--widget-phone-width);
    aspect-ratio: 393 / 852;
    flex-shrink: 0;
    container-type: inline-size;
    --widget-frame-radius: clamp(32px, 8vw, 40px);
    --widget-inner-radius: calc(var(--widget-frame-radius) - 3px);
    border-radius: var(--widget-frame-radius);
    border: 3px solid #8a6a52;
    background: #3b241d;
    box-shadow: var(--story-phone-shadow), var(--story-phone-shadow-inset);
    overflow: hidden;
    isolation: isolate;
}
.widget-demo-phone .shield-demo-screen {
    border-radius: var(--widget-inner-radius);
}
.widget-demo-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
.widget-demo-stack {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2.3cqi;
    padding: 6.5cqi 4.1cqi 0;
}
.widget-demo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.3cqi;
}
.widget-demo-apps {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-content: start;
    gap: 2.3cqi 1.2cqi;
    padding: 3.5cqi 4.1cqi 0;
    min-height: 0;
}
.widget-demo-apps .shield-demo-app {
    gap: 1.25cqi;
}
.widget-demo-apps .shield-demo-app-name {
    font-size: 2.55cqi;
}
.widget-tile {
    position: relative;
    overflow: hidden;
    color: var(--widget-text);
    font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    background:
        linear-gradient(rgba(0, 0, 0, 0.035), rgba(0, 0, 0, 0.035)),
        var(--widget-bg);
    box-shadow: 0 0 0 0.25cqi rgba(255, 255, 255, 0.65) inset;
}
.widget-tile--medium {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    aspect-ratio: 364 / 158;
    padding: 2.75cqi;
    border-radius: 6.04cqi;
}
.widget-tile--small {
    container-type: inline-size;
    aspect-ratio: 1;
    border-radius: 9.7cqi;
}
.widget-tile-label {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--widget-secondary);
    line-height: 1.2;
}
.widget-tile--medium .widget-tile-label {
    font-size: 2.75cqi;
    flex-shrink: 0;
    margin-bottom: 2.75cqi;
}
.widget-tile--small .widget-tile-label {
    font-size: 7.1cqi;
}
.widget-medium-body {
    position: relative;
    flex: 1;
    min-height: 0;
}
.widget-medium-mark {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20.88cqi;
    height: 20.88cqi;
    object-fit: contain;
    object-position: left bottom;
    pointer-events: none;
    user-select: none;
}
.widget-trend-chart {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: calc(20.88cqi + 2.2cqi);
    display: flex;
    align-items: stretch;
    gap: 1.65cqi;
}
.widget-trend-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 1.92cqi;
}
.widget-trend-strip {
    flex: 1;
    width: 100%;
    position: relative;
    min-height: 13.19cqi;
}
.widget-trend-bar {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 1.65cqi;
    height: calc(var(--bar, 50) * 1%);
    min-height: 1.1cqi;
    border-radius: 999px;
    background: color-mix(in srgb, var(--widget-chart) 82%, transparent);
    box-shadow:
        0 0.55cqi 1.1cqi rgba(0, 0, 0, 0.09),
        inset 0 0.18cqi rgba(255, 255, 255, 0.35);
    overflow: hidden;
}
.widget-trend-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(0, 0, 0, 0.06) 100%
    );
    pointer-events: none;
}
.widget-trend-day {
    flex-shrink: 0;
    font-size: 2.34cqi;
    font-weight: 500;
    color: var(--widget-secondary);
    line-height: 1;
    text-align: center;
    width: 100%;
}
.widget-tile--today {
    display: block;
}
.widget-small-text {
    position: relative;
    z-index: 1;
    padding: 6.45cqi 6.45cqi 0;
    max-width: 58%;
    display: flex;
    flex-direction: column;
    gap: 2.58cqi;
}
.widget-tile--today .widget-tile-label {
    font-size: 7.1cqi;
}
.widget-tile-value {
    margin: 0;
    font-size: 14.19cqi;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.widget-tile-meta {
    margin: 0;
    font-size: 7.74cqi;
    font-weight: 500;
    color: var(--widget-secondary);
    line-height: 1.2;
}
.widget-tile-cat {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 61.94cqi;
    height: 69.68cqi;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
    user-select: none;
}
.widget-tile--week {
    display: flex;
    flex-direction: column;
    padding: 6.45cqi;
    gap: 3.23cqi;
}
.widget-tile--week .widget-tile-label {
    margin-bottom: 0;
}
.widget-week-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.1cqi;
}
.widget-week-key {
    flex: 1;
    min-width: 0;
    font-size: 6.45cqi;
    font-weight: 500;
    color: var(--widget-secondary);
    line-height: 1.25;
}
.widget-week-val {
    flex-shrink: 0;
    font-size: 8.39cqi;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-align: right;
}
.widget-week-val--primary {
    font-size: 10.97cqi;
    font-weight: 700;
}
.widget-demo-phone .shield-demo-app-icon {
    width: 15cqi;
    height: 15cqi;
    box-shadow: 0 0.55cqi 1.65cqi rgba(0, 0, 0, 0.16);
}
.widget-demo-phone .shield-demo-dock {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 3.6cqi 1.8cqi;
    padding: 1.8cqi 2.5cqi;
    border-radius: 6.1cqi;
}
.widget-demo-phone .shield-demo-dock .shield-demo-app-icon {
    width: 15cqi;
    height: 15cqi;
    box-shadow: 0 0.45cqi 1.2cqi rgba(0, 0, 0, 0.14);
}
.widget-demo-phone .shield-demo-home-indicator {
    z-index: 2;
    flex-shrink: 0;
    height: 0.45cqi;
    margin: 0 auto 1.8cqi;
}
