/* ═══════════════════════════════════════════════════════════════════════
   Boring Order Tracker – Modern App Landing Page
   Professional, clean design inspired by App Store product pages
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    --bg: #fafafa;
    --bg-warm: #f8f6f3;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: #111318;
    --text: #111318;
    --text-secondary: #555d6b;
    --muted: #6b7280;
    --line: rgba(0, 0, 0, 0.06);
    --accent: #0a7d71;
    --accent-hover: #065f56;
    --accent-soft: rgba(10, 125, 113, 0.08);
    --accent-glow: rgba(10, 125, 113, 0.15);
    --blue: #2563eb;
    --blue-soft: rgba(37, 99, 235, 0.08);
    --warm: #e27d3f;
    --warm-soft: rgba(226, 125, 63, 0.1);
    --red: #dc2626;
    --green: #16a34a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.06), 0 20px 50px -12px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px -10px rgba(0,0,0,0.1);
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --container: 1180px;
    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, ul, ol { margin-top: 0; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
}

/* ─── Free Banner ──────────────────────────────────────────────────── */
.free-banner {
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.01em;
}
.free-banner-inner {
    padding: 12px 0;
    text-align: center;
}
.free-banner strong {
    display: inline;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ─── Topbar ────────────────────────────────────────────────────────── */
.topbar {
    background: var(--surface-dark);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { padding: 8px 0; text-align: center; }
.topbar p { margin: 0; }

/* ─── Header ────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.site-header.simple {
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(10,125,113,0.3);
}
/* Backward compat: old .brand-mark still works */
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(10,125,113,0.3);
}
.brand-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(10,125,113,0.3);
}
.brand-copy { display: grid; gap: 0; }
.brand-copy strong { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.brand-copy span { color: var(--muted); font-size: 12px; font-weight: 500; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-nav a {
    padding: 6px 14px;
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s, background 0.2s;
}
.site-nav a:hover {
    color: var(--text);
    background: rgba(0,0,0,0.04);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border-radius: 999px;
    background: rgba(0,0,0,0.04);
    border: 1px solid var(--line);
}
.lang-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.2s ease;
}
.lang-pill.is-active {
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.header-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s ease, box-shadow 0.15s ease;
    flex-direction: column;
    gap: 0;
}
.nav-toggle:hover {
    background: var(--bg-warm);
    box-shadow: var(--shadow-md);
}
.nav-toggle:active {
    transform: scale(0.95);
}
.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 2.5px auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header.is-open .nav-toggle span:first-child {
    transform: translateY(6.5px) rotate(45deg);
}
.site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    border: none;
    cursor: pointer;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(10,125,113,0.25);
}
.button-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 20px rgba(10,125,113,0.3); }
.button-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.button-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}
.button-outline:hover {
    background: var(--accent);
    color: #fff;
}
.button-dark {
    background: var(--text);
    color: #fff;
}
.button-dark:hover { opacity: 0.85; }

/* App Store Badge */
.app-store-badge {
    display: inline-block;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.app-store-badge:hover { transform: translateY(-1px); opacity: 0.85; }
.app-store-badge img, .app-store-badge svg {
    height: 48px;
    width: auto;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

a.store-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.store-button.is-disabled {
    opacity: 0.7;
    cursor: default;
}

.store-button.is-coming-soon {
    position: relative;
    overflow: hidden;
    opacity: 1;
    border-color: rgba(37, 99, 235, 0.16);
    background: linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(232, 246, 242, 0.98));
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.is-android-prelaunch .store-button--play.is-coming-soon {
    animation: playPulse 3.4s ease-in-out infinite;
}

.store-button.is-coming-soon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.68) 46%, transparent 72%);
    transform: translateX(-135%);
    animation: androidShimmer 3.8s ease-in-out infinite;
}

.store-button-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.store-button-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.store-button-logo--apple {
    color: var(--text);
    font-size: 26px;
    line-height: 1;
}

.store-button-logo--play svg {
    width: 26px;
    height: 26px;
    display: block;
}

.store-button-copy {
    display: grid;
    gap: 2px;
    text-align: left;
}

.store-button-copy strong {
    font-size: 16px;
    line-height: 1.15;
}

.store-button-copy small {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.25;
}

.store-buttons--dark .store-button {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    color: #fff;
}

.store-buttons--dark .store-button-copy small {
    color: rgba(255, 255, 255, 0.7);
}

.store-buttons--dark .store-button-logo--apple {
    color: #fff;
}

.store-button.is-coming-soon .store-button-copy strong,
.store-button.is-coming-soon .store-button-copy small {
    color: #155dfc;
}

.android-launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 24px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(232, 246, 242, 0.95), rgba(243, 248, 255, 0.96));
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.android-launch-pill-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-pill-copy {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

html.has-android-launch-modal-open,
body.has-android-launch-modal-open {
    overflow: hidden;
}

.store-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.store-brand-chip--large {
    align-self: flex-start;
    margin-bottom: 12px;
}

.store-brand-chip--apple {
    background: rgba(255, 255, 255, 0.96);
}

.store-brand-chip--play {
    background: linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(232, 246, 242, 0.98));
}

.store-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
}

.store-brand-icon--apple {
    color: #111318;
    font-size: 24px;
    line-height: 1;
}

.store-brand-icon--play svg {
    width: 24px;
    height: 24px;
    display: block;
}

.store-brand-label {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

.android-launch-status-ribbon {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 4px 0 24px;
    padding: 16px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(232, 246, 242, 0.96), rgba(243, 248, 255, 0.98));
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.08);
}

.android-launch-mini-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.android-launch-mini-card--ios {
    border-color: rgba(10, 125, 113, 0.12);
}

.android-launch-mini-card--android {
    border-color: rgba(37, 99, 235, 0.12);
}

.android-launch-mini-copy {
    display: grid;
    gap: 4px;
}

.android-launch-mini-copy small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-mini-copy strong {
    color: var(--text);
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.android-launch-mini-card--link,
.android-launch-platform-card--link {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.android-launch-mini-card--link:hover,
.android-launch-mini-card--link:focus-visible,
.android-launch-platform-card--link:hover,
.android-launch-platform-card--link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    border-color: rgba(10, 125, 113, 0.24);
    outline: none;
}

.android-launch-status-chip {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.android-launch-status-chip--ios {
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
}

.android-launch-status-chip--android {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.android-launch-status-open-button {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--blue);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.android-launch-status-open-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.android-launch-modal {
    position: fixed;
    inset: 0;
    z-index: 160;
}

.android-launch-modal[hidden] {
    display: none;
}

.android-launch-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}

.android-launch-dialog {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), 1040px);
    max-height: min(calc(100vh - 40px), 960px);
    margin: 20px auto;
    overflow: auto;
    display: grid;
    gap: 22px;
    padding: 30px;
    border-radius: 34px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 26%),
        radial-gradient(circle at bottom right, rgba(10, 125, 113, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.985), rgba(247, 250, 255, 0.97) 48%, rgba(244, 251, 248, 0.98) 100%);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
    animation: launchPanelEnter 0.32s ease;
}

.android-launch-dialog-head,
.android-launch-dialog-grid,
.android-launch-progress,
.android-launch-highlight-grid,
.android-launch-timeline {
    position: relative;
    z-index: 1;
}

.android-launch-dialog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.android-launch-dialog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.android-launch-dialog-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.android-launch-dialog-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.68;
}

.android-launch-store-wrap {
    margin-top: 24px;
}

.android-launch-platform-grid {
    display: grid;
    gap: 16px;
}

.android-launch-platform-card {
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.android-launch-platform-main {
    display: block;
}

.android-launch-platform-copy {
    min-width: 0;
}

.android-launch-platform-copy small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-platform-copy h3 {
    margin: 0 0 6px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.android-launch-platform-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.android-launch-platform-chip {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-platform-chip--ios {
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
}

.android-launch-platform-chip--android {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}

.eyebrow--launch {
    background: rgba(255, 255, 255, 0.58);
    color: #155dfc;
}

.android-launch-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 26px;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(37, 99, 235, 0.14);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(10, 125, 113, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96) 42%, rgba(244, 251, 248, 0.98) 100%);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.1);
}

.android-launch-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.55;
    animation: floatOrb 7s ease-in-out infinite;
}

.android-launch-orb--one {
    top: -38px;
    right: 12%;
    width: 124px;
    height: 124px;
    background: rgba(59, 130, 246, 0.24);
}

.android-launch-orb--two {
    bottom: 18px;
    left: -18px;
    width: 96px;
    height: 96px;
    background: rgba(10, 125, 113, 0.18);
    animation-delay: -1.8s;
}

.android-launch-orb--three {
    top: 42%;
    right: -20px;
    width: 82px;
    height: 82px;
    background: rgba(14, 165, 233, 0.2);
    animation-delay: -3.1s;
}

.android-launch-panel-head,
.android-launch-progress,
.android-launch-highlight-grid,
.android-launch-inline-actions {
    position: relative;
    z-index: 1;
}

.android-launch-panel-head h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.android-launch-panel-head p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.android-launch-progress {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(12px);
}

.android-launch-progress-copy {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 14px;
}

.android-launch-progress-copy strong {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.android-launch-progress-copy span {
    color: var(--muted);
    font-size: 13px;
}

.android-launch-progress-track {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.android-launch-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 72%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 50%, #0a7d71 100%);
    box-shadow: 0 6px 18px rgba(29, 78, 216, 0.3);
}

.android-launch-progress-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.74) 48%, transparent 78%);
    animation: androidShimmer 2.6s linear infinite;
}

.android-launch-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.android-launch-highlight {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.android-launch-highlight small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-launch-highlight strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    color: var(--text);
}

.android-launch-panel--inline {
    align-self: start;
    animation: launchPanelEnter 0.7s cubic-bezier(.2,.8,.2,1);
}

.android-launch-inline-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.android-launch-toggle {
    min-width: 190px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 255, 0.94));
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.08);
}

.android-launch-inline-note {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.android-launch-inline-popup {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 4;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 241, 0.98));
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
    animation: launchPanelEnter 0.28s ease;
}

.android-launch-inline-popup[hidden] {
    display: none;
}

.android-launch-inline-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.android-launch-inline-popup h3 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.android-launch-inline-popup > p {
    margin: 0 0 22px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.68;
}

.android-launch-panel.is-open .android-launch-panel-head,
.android-launch-panel.is-open .android-launch-inline-actions {
    opacity: 0.16;
    filter: blur(1px);
    pointer-events: none;
}

.android-launch-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.android-launch-close:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.android-launch-close span {
    font-size: 26px;
    line-height: 1;
}

.android-beta-notice {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 80;
    width: min(420px, calc(100vw - 32px));
    padding: 18px 18px 16px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.98));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    animation: betaNoticeEnter 0.28s ease;
}

.android-beta-notice[hidden] {
    display: none;
}

.android-beta-notice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.android-beta-notice h3 {
    margin: 0 0 10px;
    font-size: clamp(20px, 2.3vw, 24px);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.android-beta-notice p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.62;
}

.android-beta-notice-support {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: rgba(37, 99, 235, 0.05);
}

.android-beta-notice-support small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-beta-notice-support a {
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    word-break: break-word;
}

.android-beta-notice-support a:hover,
.android-beta-notice-support a:focus-visible {
    text-decoration: underline;
}

.android-beta-notice-support strong {
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
}

.android-beta-notice-footer {
    margin-bottom: 0 !important;
    font-size: 13px !important;
    line-height: 1.58 !important;
}

.android-beta-notice-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.android-beta-notice-close:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.android-beta-notice-close span {
    font-size: 24px;
    line-height: 1;
}

.android-launch-timeline {
    position: relative;
    display: grid;
    gap: 14px;
}

.android-launch-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.22), rgba(10, 125, 113, 0.2));
}

.android-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 18px 18px 0;
}

.android-timeline-dot {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    z-index: 1;
}

.android-timeline-copy {
    padding: 18px 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm);
}

.android-timeline-copy small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.android-timeline-copy h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.15;
}

.android-timeline-copy p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.android-timeline-item--done .android-timeline-dot {
    background: rgba(10, 125, 113, 0.14);
    border-color: rgba(10, 125, 113, 0.32);
}

.android-timeline-item--active .android-timeline-dot {
    background: rgba(37, 99, 235, 0.16);
    border-color: rgba(37, 99, 235, 0.46);
    animation: playPulse 2.8s ease-in-out infinite;
}

.android-timeline-item--active .android-timeline-copy {
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.1);
}

.android-timeline-item--upcoming .android-timeline-dot {
    background: rgba(148, 163, 184, 0.14);
    border-color: rgba(148, 163, 184, 0.28);
}

/* ─── Section Utilities ─────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-warm); }
.section-light {
    background: var(--bg-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-heading { max-width: 680px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading.compact { margin-bottom: 32px; }
.section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.section-heading p { color: var(--muted); font-size: 17px; margin: 0; line-height: 1.6; }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero-section { padding: 60px 0 40px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.hero-download-spotlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    align-items: center;
    gap: 24px;
    margin: 0 0 12px;
    padding: 20px 24px;
    border-radius: 28px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(10, 125, 113, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.97) 52%, rgba(241, 250, 247, 0.98) 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-download-copy {
    display: grid;
    gap: 8px;
}
.hero-download-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-download-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero-download-pill--ios {
    background: rgba(10, 125, 113, 0.12);
    color: var(--accent);
}
.hero-download-pill--android {
    background: rgba(37, 99, 235, 0.12);
    color: var(--blue);
}
.hero-download-copy small {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-download-copy strong {
    color: var(--text);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.hero-download-copy span {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}
.hero-download-buttons {
    display: grid;
    gap: 12px;
    justify-items: end;
}
.hero-download-buttons .store-buttons {
    gap: 14px;
    justify-content: flex-end;
}
.hero-download-buttons .store-button {
    min-width: 230px;
    padding: 15px 18px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.hero-download-buttons .store-button-copy strong {
    font-size: 19px;
}
.hero-download-buttons .store-button-copy small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.hero-download-launch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-download-launch-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.12);
}
.hero-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--text);
}
.hero-body {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 28px 0 20px;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}
.hero-badges li {
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.hero-disclaimer {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}
.hero-disclaimer strong {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.hero-disclaimer p { margin: 0; color: inherit; font-size: inherit; }

/* Hero Visual – Showcase Panel */
.hero-visual {
    position: relative;
    align-self: start;
}
.hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}
.showcase-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.showcase-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.showcase-card h2 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.showcase-value {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.showcase-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ─── Metrics ───────────────────────────────────────────────────────── */
.metric-section { padding: 20px 0 80px; }
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.metric-card {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.metric-value {
    margin-bottom: 8px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}
.metric-card h3 { margin: 0 0 6px; font-size: 15px; font-weight: 600; }
.metric-card p { margin: 0; color: var(--muted); font-size: 13px; }
.metric-meta {
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
}
.metric-meta strong { font-weight: 600; }

/* ─── Feature Grid ──────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
}
.feature-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; line-height: 1.2; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ─── Feature Sections (alternating) ────────────────────────────────── */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.feature-section.reverse { direction: rtl; }
.feature-section.reverse > * { direction: ltr; }
.feature-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.section-body { color: var(--text-secondary); font-size: 16px; line-height: 1.65; }

.detail-list {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}
.detail-list.compact { margin: 12px 0 20px; }
.detail-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}
.detail-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.callout-box {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--accent-soft);
    border: 1px solid rgba(10,125,113,0.1);
}
.callout-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}
.callout-box p { margin: 0; color: var(--text-secondary); font-size: 14px; }

/* Screenshot Cards */
.screenshot-card, .gallery-media {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #1a1d24;
    box-shadow: var(--shadow-lg);
}
.screenshot-card.has-image img, .gallery-media.has-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
/* Portrait screenshots in feature sections */
.feature-shot .screenshot-card.has-image {
    max-width: 320px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
}
.feature-shot .screenshot-card.has-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.screenshot-card.has-image figcaption {
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    background: rgba(0,0,0,0.6);
}
.screenshot-card.placeholder, .gallery-media.placeholder {
    display: grid;
    place-items: center;
    min-height: 320px;
}
.screenshot-card.placeholder { padding: 24px; }
.placeholder-screen {
    display: grid;
    place-items: center;
    min-height: 320px;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255,255,255,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.placeholder-screen small, .gallery-media.placeholder small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.screenshot-card.placeholder p, .gallery-media.placeholder span {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── Demo Report CTA Card ─────────────────────────────────────────── */
.demo-report-cta-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
    box-shadow: var(--shadow-lg);
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 32px;
}
.demo-report-cta-inner {
    text-align: center;
    color: #fff;
}
.demo-report-cta-icon {
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
}
.demo-report-cta-inner h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.demo-report-cta-inner p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.demo-report-cta-inner .button-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: none;
}
.demo-report-cta-inner .button-primary:hover {
    background: rgba(255,255,255,0.9);
}
.gallery-media.demo-report-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, #0a7d71 0%, #065f56 100%);
}
.vehicle-report-cta-card {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #0f3b63 0%, #123c8a 48%, #0f766e 100%);
    box-shadow: var(--shadow-lg);
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 32px;
}
.gallery-media.vehicle-report-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(135deg, #0f3b63 0%, #123c8a 48%, #0f766e 100%);
}

/* ─── Community Issues Grid ─────────────────────────────────────────── */
.issue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.issue-card {
    padding: 24px 20px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}
.issue-card:hover { transform: translateY(-2px); }
.issue-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.issue-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; line-height: 1.2; }
.issue-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ─── Language Section ──────────────────────────────────────────────── */
.language-panel {
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.language-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.language-box {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    border: 1px solid var(--line);
}
.language-box h3 { margin: 0 0 12px; font-size: 16px; font-weight: 600; }
.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.language-tags li {
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
}

/* ─── Gallery Grid ──────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-card {
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery-media { min-height: 220px; }
.gallery-copy { padding: 16px 18px; }
.gallery-copy h3 { margin: 0 0 6px; font-size: 16px; font-weight: 600; line-height: 1.2; }
.gallery-copy p { margin: 0; color: var(--muted); font-size: 13px; }

/* ─── Guide Cards ───────────────────────────────────────────────────── */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.guide-card {
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}
.guide-card:hover { transform: translateY(-2px); }
.guide-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; line-height: 1.1; }
.guide-card h3 a { color: var(--text); }
.guide-card h3 a:hover { color: var(--accent); }
.guide-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.guide-link { color: var(--accent); font-weight: 600; font-size: 14px; }
.guide-link:hover { text-decoration: underline; }

/* ─── Support Panel ─────────────────────────────────────────────────── */
.support-panel {
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(10,125,113,0.03), rgba(37,99,235,0.02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 10px; }
.faq-item {
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.15s ease;
}
.faq-item summary:hover { background: rgba(0,0,0,0.015); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    font-size: 18px;
    font-weight: 400;
    color: var(--muted);
    transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item[open] summary::after {
    content: "\2212";
    background: var(--accent-soft);
    color: var(--accent);
}
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ─── CTA Section ───────────────────────────────────────────────────── */
.cta-section { padding-top: 40px; }
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    border-radius: var(--radius-2xl);
    background: var(--surface-dark);
    color: #fff;
    box-shadow: var(--shadow-xl);
}
.cta-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}
.cta-copy .eyebrow {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}
.cta-copy p { margin: 0; color: rgba(255,255,255,0.6); font-size: 15px; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}
.cta-actions .button-primary { background: #fff; color: var(--text); box-shadow: none; }
.cta-actions .button-primary:hover { background: rgba(255,255,255,0.9); }
.cta-actions .button-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-actions .store-buttons { justify-content: flex-start; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.site-footer {
    padding: 48px 0 28px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 0.75fr);
    gap: 24px;
}
.footer-brand p { max-width: 420px; color: var(--muted); font-size: 14px; margin-top: 12px; }
.footer-links h3 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}
.footer-links ul { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

/* ─── Legal Pages ───────────────────────────────────────────────────── */
.legal-page { background: var(--bg); }
.legal-box {
    max-width: 720px;
    margin: 40px auto;
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.legal-box h1 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.legal-box p { color: var(--muted); font-size: 16px; }
.legal-box .button { margin-top: 20px; }

/* ─── Guide Pages ───────────────────────────────────────────────────── */
.guide-page-shell { display: grid; gap: 20px; }
.guide-hero, .guide-section-box, .related-links {
    padding: 32px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.guide-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.guide-hero p, .guide-section-box p, .related-links p {
    color: var(--muted);
    font-size: 16px;
}
.guide-bullets { padding-left: 20px; margin: 18px 0 0; }
.guide-bullets li { margin-bottom: 10px; color: var(--text-secondary); }
.guide-section-box h2, .related-links h2 { margin: 0 0 10px; font-size: 22px; font-weight: 700; }
.related-links ul { padding-left: 18px; margin: 0; }
.related-links li { margin-bottom: 10px; }

/* ─── Verify Page ───────────────────────────────────────────────────── */
.verify-section { padding: 60px 0 100px; }
.verify-container { max-width: 600px; margin: 0 auto; }
.verify-card {
    padding: 40px;
    border-radius: var(--radius-2xl);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}
.verify-header {
    text-align: center;
    margin-bottom: 32px;
}
.verify-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.verify-icon.success {
    background: rgba(22,163,74,0.1);
    color: var(--green);
}
.verify-icon.error {
    background: rgba(220,38,38,0.1);
    color: var(--red);
}
.verify-icon.pending {
    background: var(--accent-soft);
    color: var(--accent);
}
.verify-header h1 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
}
.verify-header p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}
.verify-details {
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.verify-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.verify-row:last-child { border-bottom: 0; }
.verify-label { color: var(--muted); font-weight: 500; }
.verify-value { font-weight: 600; text-align: right; }
.verify-value.positive { color: var(--green); }
.verify-value.negative { color: var(--red); }
.verify-value.neutral { color: var(--muted); }
.verify-footer {
    margin-top: 24px;
    text-align: center;
}
.verify-footer p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 12px;
}
.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.verify-badge.authentic {
    background: rgba(22,163,74,0.08);
    color: var(--green);
}
.verify-badge.invalid {
    background: rgba(220,38,38,0.08);
    color: var(--red);
}

/* ─── Animations ────────────────────────────────────────────────────── */
.reveal-target {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-target.is-revealed {
    opacity: 1;
    transform: translateY(0);
}
/* Legacy compat */
.is-revealed {
    animation: none;
}

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

.metric-value.counting {
    animation: countUp 0.3s ease forwards;
}

@keyframes playPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12); }
    50% { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2); }
}

@keyframes betaNoticeEnter {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes androidShimmer {
    0% { transform: translateX(-135%); }
    100% { transform: translateX(135%); }
}

@keyframes floatOrb {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -12px, 0) scale(1.05); }
}

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

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { max-width: 100%; }

    .social-follow-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
    }

    .social-follow-strip-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .social-follow-chip {
        flex: 1 1 180px;
        min-width: 0;
    }

    .hero-download-spotlight {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hero-download-buttons {
        justify-items: start;
    }
    .hero-download-buttons .store-buttons { justify-content: flex-start; }
    .hero-download-buttons .store-button { min-width: 210px; }
    .feature-grid, .issue-grid, .gallery-grid, .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-section, .feature-section.reverse { grid-template-columns: 1fr; direction: ltr; }
    .feature-section.reverse > * { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-panel { flex-direction: column; text-align: center; padding: 32px; }
    .cta-actions { justify-content: center; }
    .store-button { min-width: 180px; }
    .android-launch-dialog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .site-nav {
        position: absolute;
        top: calc(100% + 4px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        border-radius: var(--radius-md);
        background: rgba(255,255,255,0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px);
    }
    .site-header.is-open .site-nav { display: flex; }
    .site-nav a { padding: 12px 16px; border-radius: var(--radius-xs); }
    .header-inner { flex-wrap: wrap; }
    .header-actions { margin-left: auto; }
    .hero-panel { grid-template-columns: 1fr; }
    .android-launch-highlight-grid { grid-template-columns: 1fr; }
    .android-launch-status-ribbon { grid-template-columns: 1fr; }
    .android-beta-notice {
        right: 14px;
        bottom: 14px;
        width: min(400px, calc(100vw - 28px));
    }
    .language-columns { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .rename-popup-rename-map {
        grid-template-columns: 1fr;
    }

    .rename-popup-rename-arrow {
        transform: rotate(90deg);
        min-height: 20px;
    }

    .section { padding: 64px 0; }
    .hero-section { padding: 40px 0 24px; }
    .metric-section { padding-bottom: 60px; }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand-copy strong { font-size: 18px; }
    .metric-grid, .feature-grid, .issue-grid, .gallery-grid, .guide-grid { grid-template-columns: 1fr; }
    .feature-card h3, .issue-card h3, .gallery-copy h3, .language-box h3, .faq-item summary { font-size: 17px; }
    .placeholder-screen, .gallery-media { min-height: 200px; }
    .cta-panel, .legal-box, .language-panel, .support-panel { padding: 24px; }
    .hero-badges li, .language-tags li { width: 100%; justify-content: center; text-align: center; }
    .verify-card { padding: 24px; }
    .hero-copy h1 { font-size: 32px; }
    .hero-download-spotlight {
        padding: 18px;
        border-radius: 24px;
        margin-bottom: 0;
    }
    .hero-download-copy strong { font-size: 26px; }
    .hero-download-copy span { font-size: 14px; }
    .hero-download-status-row { gap: 8px; }
    .hero-download-buttons .store-button {
        width: 100%;
        min-width: 0;
    }
    .hero-download-launch-button {
        width: 100%;
    }
    .android-beta-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 16px;
        border-radius: 22px;
    }
    .android-beta-notice h3 { font-size: 19px; }
    .android-beta-notice-support { padding: 11px 12px; }
    .android-beta-notice-support a { font-size: 16px; }
    .android-launch-pill { display: grid; justify-items: start; }
    .android-launch-status-ribbon { padding: 12px; gap: 12px; }
    .android-launch-mini-card { padding: 16px; }
    .android-launch-mini-copy strong { font-size: 17px; }
    .android-launch-status-open-button { min-height: 52px; font-size: 13px; }
    .android-launch-dialog {
        width: min(calc(100% - 24px), 1040px);
        max-height: min(calc(100vh - 24px), 960px);
        margin: 12px auto;
        padding: 22px;
        border-radius: 28px;
    }
    .android-launch-dialog-copy h2 { font-size: 34px; }
    .android-launch-dialog-copy p { font-size: 16px; }
    .android-launch-platform-copy h3 { font-size: 24px; }
    .android-launch-panel,
    .android-launch-inline-popup { padding: 24px; border-radius: 26px; }
    .android-launch-panel-head h2,
    .android-launch-inline-popup h3 { font-size: 28px; }
    .android-launch-progress-copy { flex-direction: column; align-items: flex-start; }
    .android-launch-inline-actions { align-items: flex-start; }
    .android-launch-toggle { width: 100%; }
    .android-launch-inline-popup {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }
    .android-launch-panel.is-open .android-launch-panel-head,
    .android-launch-panel.is-open .android-launch-inline-actions {
        opacity: 1;
        filter: none;
        pointer-events: auto;
    }
    .android-timeline-item { grid-template-columns: 24px 1fr; gap: 12px; }
    .android-launch-timeline::before { left: 11px; }
    .android-timeline-dot { width: 24px; height: 24px; }
    .android-timeline-copy { padding: 16px 16px 18px; }
}


/* ─── Rename Popup ─────────────────────────────────────────────────── */

.social-follow-strip {
    position: relative;
    z-index: 5;
    padding: 14px 0 0;
}

.social-follow-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(15, 122, 114, 0.14);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(15, 122, 114, 0.10), rgba(255, 255, 255, 0.94) 52%, rgba(226, 125, 63, 0.12)),
        #ffffff;
    box-shadow: 0 18px 40px rgba(31, 35, 42, 0.08);
}

.social-follow-strip-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.social-follow-strip-copy strong {
    font-size: 18px;
    line-height: 1.2;
    color: #1f232a;
}

.social-follow-strip-copy span {
    font-size: 14px;
    line-height: 1.45;
    color: #5f6873;
}

.social-follow-strip-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-follow-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(31, 35, 42, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.social-follow-chip:hover,
.social-follow-chip:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(31, 35, 42, 0.16);
    opacity: 0.96;
}

.social-follow-chip--instagram {
    background: linear-gradient(135deg, #ff7a18, #d62976 52%, #4f5bd5);
}

.social-follow-chip--facebook {
    background: linear-gradient(135deg, #1877f2, #0d5fd6);
}

.rename-popup-open {
    overflow: hidden;
}

.rename-popup {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    padding: 24px;
}

.rename-popup.is-hidden {
    display: none;
}

.rename-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rename-popup-card {
    position: relative;
    z-index: 1;
    width: min(460px, calc(100vw - 32px));
    padding: 26px 26px 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at top right, rgba(91, 229, 214, 0.14), transparent 32%),
        radial-gradient(circle at left center, rgba(37, 99, 235, 0.14), transparent 36%),
        linear-gradient(160deg, #111318 0%, #162329 100%);
    color: #f8fafc;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.34);
    text-align: center;
}

.rename-popup-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(10, 125, 113, 0.18);
    border: 1px solid rgba(94, 234, 212, 0.18);
    color: #ccfbf1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rename-popup-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(24px, 5vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rename-popup-rename-map {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
    margin: 0 0 18px;
}

.rename-popup-rename-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.rename-popup-rename-item strong {
    color: #ffffff;
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.rename-popup-rename-item--new {
    background: rgba(248, 250, 252, 0.96);
    border-color: rgba(255, 255, 255, 0.22);
}

.rename-popup-rename-item--new strong {
    color: #0f172a;
}

.rename-popup-rename-caption {
    color: rgba(226, 232, 240, 0.76);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rename-popup-rename-item--new .rename-popup-rename-caption {
    color: rgba(15, 23, 42, 0.62);
}

.rename-popup-rename-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #67e8f9;
    font-size: 28px;
    font-weight: 800;
}

.rename-popup-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #0f172a;
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.rename-popup-copy {
    margin: 0 0 18px;
    color: rgba(226, 232, 240, 0.86);
    font-size: 15px;
    line-height: 1.55;
}

.rename-popup-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 13px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #13b8a6 0%, #0a7d71 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(10, 125, 113, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.rename-popup-action:hover,
.rename-popup-action:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px rgba(10, 125, 113, 0.28);
}

.rename-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(248, 250, 252, 0.92);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.rename-popup-close:hover,
.rename-popup-close:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}
