@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Bricolage+Grotesque:wght@500;700;800&display=swap");

:root {
    --bg: #fdf1ea;
    --bg-soft: #fff8f2;
    --ink: #17151b;
    --muted: #625a69;
    --line: rgba(18, 23, 35, 0.09);
    --card: rgba(255, 247, 240, 0.8);
    --card-strong: rgba(255, 250, 245, 0.96);
    --accent: #c95e2a;
    --accent-soft: rgba(201, 94, 42, 0.14);
    --cobalt: #a63d3c;
    --mint: #775c1f;
    --shadow: 0 24px 64px rgba(78, 30, 18, 0.09);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    background: linear-gradient(180deg, #fff5ee 0%, #f8eadf 100%);
}

body.nav-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
}

.site-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(166, 61, 60, 0.12), transparent 30%),
        radial-gradient(circle at 84% 8%, rgba(201, 94, 42, 0.16), transparent 22%),
        linear-gradient(transparent 96%, rgba(18, 23, 35, 0.035) 100%);
    background-size: auto, auto, 100% 32px;
    pointer-events: none;
    z-index: -1;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(247, 239, 226, 0.82);
    border-bottom: 1px solid rgba(18, 23, 35, 0.06);
}

.header-shell {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 84px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 320px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(8, 38, 28, 0.18));
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong,
h1,
h2,
h3 {
    font-family: "Bricolage Grotesque", sans-serif;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.25;
    max-width: 250px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-left: 0;
    min-width: 0;
    flex-wrap: nowrap;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.1;
    white-space: nowrap;
}

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

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cobalt), var(--accent));
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.header-cta,
.button-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 35px rgba(18, 23, 35, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(18, 23, 35, 0.12);
}

.button-muted {
    background: rgba(18, 23, 35, 0.08);
    border-color: rgba(18, 23, 35, 0.08);
    color: var(--muted);
    box-shadow: none;
}

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

.is-disabled {
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

.full {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid rgba(18, 23, 35, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section,
.page-hero {
    padding: 42px 0 24px;
}

.hero-shell,
.page-hero-shell {
    display: grid;
    gap: 26px;
    align-items: stretch;
}

.hero-shell {
    grid-template-columns: 1.3fr 0.9fr;
}

.hero-copy,
.hero-panel,
.page-hero-shell,
.app-hero-copy,
.app-hero-card,
.content-card,
.sidebar-card,
.reason-card,
.contact-card,
.mini-collection,
.category-card,
.app-card,
.cta-band {
    border: 1px solid rgba(18, 23, 35, 0.08);
    background: var(--card);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-copy,
.page-hero-shell,
.app-hero-copy {
    border-radius: var(--radius-xl);
    padding: 34px;
}

.hero-copy h1,
.page-hero h1,
.app-hero-copy h1 {
    margin: 10px 0 16px;
    font-size: clamp(2.35rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-text,
.page-hero p,
.app-hero-copy p {
    margin: 0;
    max-width: 64ch;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cobalt);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.hero-stats div,
.hero-panel-card,
.app-hero-card,
.search-bar,
.stat-grid,
.sidebar-card,
.content-card,
.reason-card,
.contact-card,
.faq-item,
.mini-item {
    border-radius: var(--radius-lg);
}

.hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
}

.hero-stats strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.6rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-panel {
    display: grid;
    gap: 18px;
}

.hero-panel-card {
    padding: 28px;
}

.hero-panel-card.tinted {
    background: linear-gradient(135deg, rgba(166, 61, 60, 0.08), rgba(201, 94, 42, 0.11));
}

.panel-kicker {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

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

.panel-head a,
.panel-head-note {
    color: var(--cobalt);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.hero-link-list,
.hero-guide-list {
    display: grid;
    gap: 12px;
}

.hero-keyword-link,
.hero-guide-item {
    min-height: 0;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(18, 23, 35, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-keyword-link:hover,
.hero-guide-item:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 86, 194, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.hero-keyword-link {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.hero-keyword-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(8, 38, 28, 0.14));
}

.hero-keyword-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.hero-keyword-copy strong,
.hero-guide-copy strong {
    font-size: 1.02rem;
    line-height: 1.2;
}

.hero-keyword-copy span,
.hero-guide-copy span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-keyword-meta {
    display: grid;
    gap: 4px;
    justify-items: end;
    text-align: right;
}

.hero-keyword-meta span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-keyword-meta strong {
    color: var(--accent);
    white-space: nowrap;
}

.hero-guide-item {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
}

.hero-guide-dot {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cobalt), var(--accent));
}

.section {
    padding: 28px 0;
}

.section-head {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.section-head.split {
    grid-template-columns: 0.95fr 1fr;
    align-items: end;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.category-grid,
.card-grid,
.reason-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

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

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

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

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

.category-card,
.app-card,
.reason-card,
.contact-card,
.mini-collection,
.content-card,
.sidebar-card,
.cta-band {
    padding: 24px;
}

.category-card strong,
.app-card h3,
.mini-collection h3,
.reason-card h3,
.contact-card h2,
.content-card h2,
.sidebar-card h3,
.cta-band h2 {
    margin: 0;
}

.category-card p,
.app-card p,
.mini-collection p,
.reason-card p,
.contact-card p,
.content-card p,
.sidebar-card p,
.cta-band p {
    color: var(--muted);
    line-height: 1.7;
}

.category-card:hover,
.app-card:hover {
    transform: translateY(-4px);
}

.app-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 2px;
}

.app-logo {
    width: 124px;
    height: 124px;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(8, 38, 28, 0.18));
}

.app-card-top,
.mini-collection-head,
.card-actions,
.tag-row,
.footer-shell,
.breadcrumbs,
.app-layout,
.collection-layout {
    display: flex;
    gap: 12px;
}

.app-card-top,
.mini-collection-head {
    justify-content: space-between;
    align-items: center;
}

.pill,
.card-badge,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 23, 35, 0.08);
    font-size: 0.84rem;
    font-weight: 700;
}

.card-badge {
    color: var(--accent);
}

.app-card h3 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.app-card-copy {
    display: grid;
    gap: 14px;
}

.app-card-copy h3 {
    margin: 0;
    line-height: 1.2;
}

.app-card-copy p {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.app-meta {
    display: grid;
    gap: 0;
    margin-top: auto;
    padding-top: 2px;
    border-top: 1px solid rgba(18, 23, 35, 0.08);
}

.app-meta-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 23, 35, 0.06);
}

.app-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-grid div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 118px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(18, 23, 35, 0.07);
    border-radius: 18px;
}

.app-meta-row span,
.stat-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.2;
}

.stat-grid span {
    margin-bottom: 4px;
}

.app-meta-row strong,
.stat-grid strong {
    font-size: 1.05rem;
    white-space: nowrap;
}

.tag-row {
    flex-wrap: wrap;
}

.tag-row.compact span {
    background: transparent;
}

.card-actions {
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.text-link {
    color: var(--muted);
    font-weight: 700;
}

.text-link-button {
    padding: 0;
    border: none;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.text-link.strong {
    color: var(--cobalt);
}

.text-link.disabled {
    color: rgba(93, 101, 120, 0.75);
}

.section-link {
    margin-top: 18px;
}

.section-link a,
.mini-collection-head a {
    color: var(--cobalt);
    font-weight: 700;
}

.collection-layout {
    align-items: stretch;
    flex-wrap: wrap;
}

.collection-layout > div {
    flex: 1 1 280px;
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mini-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
}

.mini-logo {
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(8, 38, 28, 0.14));
}

.mini-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.mini-item strong {
    display: block;
}

.mini-copy span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.mini-score {
    display: grid;
    gap: 4px;
    min-width: 92px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(18, 23, 35, 0.08);
    background: linear-gradient(135deg, rgba(239, 108, 36, 0.08), rgba(31, 86, 194, 0.04));
    justify-items: end;
    text-align: right;
}

.mini-score span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.mini-score strong {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    font-size: 1.08rem;
    line-height: 1.1;
}

.search-bar {
    padding: 16px;
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(18, 23, 35, 0.08);
}

.search-bar input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    color: var(--ink);
}

.search-bar input::placeholder {
    color: rgba(93, 101, 120, 0.88);
}

.faq-shell {
    display: grid;
    gap: 24px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(31, 86, 194, 0.1), rgba(239, 108, 36, 0.11));
}

.page-hero-shell {
    max-width: 860px;
}

.app-hero-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: start;
    --hero-mx: 0.5;
    --hero-my: 0.5;
}

.app-hero-copy {
    position: relative;
    overflow: hidden;
}

.app-hero-copy::before,
.app-hero-card::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.app-hero-copy::before {
    inset: auto auto -90px -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 86, 194, 0.15), transparent 70%);
}

.app-hero-card::before {
    top: -90px;
    right: -56px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 108, 36, 0.18), transparent 68%);
    transform: translate3d(calc((var(--hero-mx) - 0.5) * 24px), calc((var(--hero-my) - 0.5) * 24px), 0);
    transition: transform 180ms ease;
}

.app-hero-copy > *,
.app-hero-card > * {
    position: relative;
    z-index: 1;
}

.app-hero-top {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.app-hero-intro {
    display: grid;
    gap: 14px;
}

.detail-logo-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 178px;
    padding: 14px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.74), transparent 34%),
        linear-gradient(145deg, rgba(12, 92, 72, 0.16), rgba(31, 86, 194, 0.1));
    border: 1px solid rgba(18, 23, 35, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    overflow: hidden;
}

.detail-logo-shell::before,
.detail-logo-shell::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 50%;
    pointer-events: none;
}

.detail-logo-shell::before {
    width: 156px;
    height: 156px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 70%);
    animation: pulseGlow 4.8s ease-in-out infinite;
}

.detail-logo-shell::after {
    width: 130%;
    height: 18px;
    bottom: 18px;
    left: -15%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
    opacity: 0.58;
    animation: shimmerSweep 5.8s linear infinite;
}

.detail-logo {
    width: 152px;
    height: 152px;
    margin: 0;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(8, 38, 28, 0.18));
    animation: floatLogo 6.2s ease-in-out infinite;
}

.breadcrumbs {
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(31, 86, 194, 0.08), rgba(239, 108, 36, 0.1));
    border: 1px solid rgba(18, 23, 35, 0.07);
}

.hero-note span {
    color: var(--cobalt);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-note strong {
    font-size: 1rem;
    line-height: 1.5;
}

.app-hero-card {
    display: grid;
    gap: 16px;
    align-self: start;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

.app-hero-panel-head {
    display: grid;
    gap: 6px;
}

.app-hero-panel-head h2 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.15;
}

.app-hero-card .stat-grid {
    gap: 14px;
}

.app-hero-card .stat-grid div {
    min-height: 90px;
    padding: 15px 16px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.app-hero-card .stat-grid div:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 86, 194, 0.15);
    background: rgba(255, 255, 255, 0.7);
}

.hero-cta-stack {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(31, 86, 194, 0.08), rgba(239, 108, 36, 0.1));
    border: 1px solid rgba(18, 23, 35, 0.07);
}

.hero-cta-stack .button {
    min-height: 52px;
}

.hero-cta-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: center;
}

.signal-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.signal-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 23, 35, 0.08);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-mini-grid,
.sidebar-note-list {
    display: grid;
    gap: 12px;
}

.hero-signal-list {
    display: grid;
    gap: 10px;
}

.hero-signal-item,
.hero-mini-card,
.sidebar-note-item {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.07);
}

.hero-signal-item {
    position: relative;
    padding-left: 18px;
}

.hero-signal-item::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cobalt), var(--accent));
}

.hero-signal-item span,
.hero-mini-card span,
.sidebar-note-item span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.hero-signal-item strong,
.hero-mini-card strong,
.sidebar-note-item strong {
    display: block;
    line-height: 1.45;
    font-size: 0.97rem;
}

.app-layout {
    align-items: flex-start;
}

.app-main {
    flex: 1 1 0;
    display: grid;
    gap: 18px;
}

.app-sidebar {
    width: min(360px, 100%);
}

.sidebar-card {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
}

.bullet-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.bullet-item {
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 23, 35, 0.06);
    line-height: 1.6;
}

.compact .faq-item {
    background: rgba(255, 255, 255, 0.46);
}

.content-card-accent {
    background:
        radial-gradient(circle at top right, rgba(239, 108, 36, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(31, 86, 194, 0.1), transparent 28%),
        var(--card);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.promo-tile {
    min-height: 100%;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(18, 23, 35, 0.07);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.promo-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 108, 36, 0.16);
    box-shadow: 0 18px 36px rgba(18, 23, 35, 0.08);
}

.promo-tile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.promo-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(8, 38, 28, 0.16));
}

.promo-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(31, 86, 194, 0.08);
    color: var(--cobalt);
    font-size: 0.85rem;
    font-weight: 700;
}

.promo-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.04rem;
}

.promo-tile p {
    margin: 0;
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.72;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes shimmerSweep {
    0% {
        transform: translateX(-24%);
    }

    100% {
        transform: translateX(24%);
    }
}

.site-footer {
    padding: 32px 0 48px;
}

.footer-shell {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 24px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(18, 23, 35, 0.08);
}

.footer-title {
    margin: 0 0 8px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    max-width: 56ch;
    color: var(--muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-weight: 600;
}

.footer-meta {
    display: grid;
    gap: 6px;
    color: var(--muted);
    text-align: right;
}

[data-search-card].is-hidden {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-shell,
    .app-hero-shell,
    .section-head.split,
    .category-grid,
    .card-grid,
    .reason-grid,
    .contact-grid,
    .app-layout {
        grid-template-columns: 1fr;
    }

    .app-layout {
        display: grid;
    }

    .app-hero-top,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        width: 100%;
    }

    .sidebar-card {
        position: static;
    }
}

@media (max-width: 1220px) {
    .header-shell {
        grid-template-columns: minmax(220px, 276px) minmax(0, 1fr) auto;
        gap: 14px;
    }

    .brand {
        max-width: 276px;
    }

    .brand-copy span {
        display: none;
    }

    .site-nav {
        gap: 10px;
    }

    .site-nav a {
        font-size: 0.94rem;
    }

    .header-cta {
        min-height: 44px;
        padding: 0 18px;
        font-size: 0.96rem;
    }
}

@media (max-width: 920px) {
    .header-shell {
        display: flex;
        gap: 12px;
        padding: 10px 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        position: fixed;
        inset: 84px 16px auto;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        border: 1px solid rgba(18, 23, 35, 0.08);
        background: rgba(255, 250, 243, 0.97);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

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

    .hero-stats,
    .app-stats,
    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .hero-section,
    .page-hero,
    .section {
        padding: 20px 0;
    }

    .hero-copy,
    .page-hero-shell,
    .app-hero-copy,
    .app-hero-card,
    .category-card,
    .app-card,
    .mini-collection,
    .reason-card,
    .contact-card,
    .content-card,
    .sidebar-card,
    .cta-band {
        padding: 22px;
    }

    .app-hero-top {
        gap: 18px;
    }

    .detail-logo-shell {
        min-height: 156px;
    }

    .brand-copy span {
        display: none;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .hero-stats,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-keyword-link {
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: start;
    }

    .hero-keyword-meta {
        grid-column: 2;
        justify-items: start;
        text-align: left;
    }

    .cta-band,
    .card-actions,
    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .mini-logo {
        width: 68px;
        height: 68px;
    }

    .mini-item {
        grid-template-columns: 68px minmax(0, 1fr);
        align-items: start;
    }

    .mini-score {
        grid-column: 2;
        justify-items: start;
        text-align: left;
        min-width: 0;
        width: fit-content;
    }
}

body.site-rummyyonorummy .hero-section,
body.site-rummyyonorummy .page-hero {
    padding: 0;
}

.rummy-ledger-cover {
    padding: 56px 0 28px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 235, 0.42)),
        repeating-linear-gradient(0deg, rgba(123, 74, 45, 0.05) 0 1px, transparent 1px 34px);
    border-bottom: 1px solid rgba(112, 71, 43, 0.12);
}

.rummy-ledger-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 360px;
    gap: 34px;
    align-items: end;
}

.rummy-ledger-title h1 {
    max-width: 860px;
    margin: 8px 0 18px;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.92;
}

.rummy-ledger-title p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.rummy-ledger-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.rummy-ledger-ticket {
    display: grid;
    gap: 14px;
    padding: 24px;
    background: #fffaf5;
    border: 1px solid rgba(121, 70, 35, 0.18);
    box-shadow: 10px 10px 0 rgba(166, 61, 60, 0.08);
}

.rummy-ticket-label {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.rummy-ledger-ticket img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.rummy-ledger-ticket h2 {
    margin: 0;
    font-size: 2rem;
}

.rummy-ledger-ticket p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.rummy-ticket-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.rummy-ticket-meta span {
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(121, 70, 35, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-size: 0.84rem;
}

.rummy-ticket-meta strong {
    color: var(--ink);
}

.rummy-ledger-nav {
    padding: 18px 0;
    border-bottom: 1px solid rgba(112, 71, 43, 0.12);
}

.rummy-ledger-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.rummy-ledger-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    padding: 14px 16px;
    background: rgba(255, 250, 245, 0.8);
    border: 1px solid rgba(121, 70, 35, 0.12);
}

.rummy-ledger-tabs strong {
    margin-left: auto;
    color: var(--accent);
}

.rummy-board-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.rummy-board-side {
    position: sticky;
    top: 108px;
    padding: 24px;
    background: #251a16;
    color: #fff;
}

.rummy-board-side .eyebrow,
.rummy-board-side h2 {
    color: #fff;
}

.rummy-ledger-ranks {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.rummy-rank-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rummy-rank-row span,
.rummy-rank-row em {
    color: #f2b184;
    font-style: normal;
}

.rummy-ledger-list {
    display: grid;
    gap: 16px;
}

.rummy-ledger-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(121, 70, 35, 0.14);
}

.rummy-ledger-item img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.rummy-ledger-item span,
.rummy-paper-list .eyebrow {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.rummy-ledger-item h3 {
    margin: 4px 0;
    font-size: 1.55rem;
}

.rummy-ledger-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.rummy-ledger-more {
    color: var(--accent);
    font-weight: 800;
}

.rummy-split-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.rummy-paper-list {
    padding: 28px;
    background: rgba(255, 250, 245, 0.86);
    border: 1px solid rgba(121, 70, 35, 0.12);
}

.rummy-paper-list h2 {
    margin: 6px 0 18px;
}

.rummy-paper-list a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid rgba(121, 70, 35, 0.12);
}

.rummy-detail-mast {
    padding: 42px 0 22px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.86), rgba(255, 242, 231, 0.45));
    border-bottom: 1px solid rgba(121, 70, 35, 0.12);
}

.rummy-detail-shell {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.rummy-detail-logo {
    width: 148px;
    height: 148px;
    object-fit: contain;
}

.rummy-detail-shell h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
}

.rummy-detail-shell p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.rummy-metric-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    max-width: 920px;
    margin-top: 14px;
    border-top: 1px solid rgba(121, 70, 35, 0.16);
    border-bottom: 1px solid rgba(121, 70, 35, 0.16);
}

.rummy-metric-bar span {
    display: grid;
    gap: 4px;
    padding: 16px;
    color: var(--muted);
    border-right: 1px solid rgba(121, 70, 35, 0.16);
}

.rummy-metric-bar span:last-child {
    border-right: 0;
}

.rummy-metric-bar strong {
    color: var(--ink);
}

.rummy-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: start;
}

.rummy-paper-panel {
    padding: 26px;
    background: rgba(255, 250, 245, 0.84);
    border: 1px solid rgba(121, 70, 35, 0.12);
}

.rummy-paper-panel h2 {
    margin-top: 6px;
}

.rummy-paper-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.rummy-related-panel {
    display: grid;
    gap: 12px;
}

.rummy-related-panel a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(121, 70, 35, 0.1);
}

.rummy-related-panel img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@media (max-width: 1080px) {
    .rummy-ledger-shell,
    .rummy-board-grid,
    .rummy-detail-grid {
        grid-template-columns: 1fr;
    }

    .rummy-board-side {
        position: static;
    }
}

@media (max-width: 720px) {
    .rummy-ledger-title h1,
    .rummy-detail-shell h1 {
        font-size: 3rem;
    }

    .rummy-ledger-item,
    .rummy-metric-bar,
    .rummy-split-lists {
        grid-template-columns: 1fr;
    }

    .rummy-ledger-item {
        align-items: start;
    }

    .rummy-ticket-meta {
        grid-template-columns: 1fr;
    }
}

body.site-rummyyonorummy {
    background: linear-gradient(180deg, #fff6ef 0%, #f5e2d6 100%);
}

body.site-rummyyonorummy .site-bg {
    background:
        radial-gradient(circle at 10% 8%, rgba(169, 76, 49, 0.14), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(201, 94, 42, 0.14), transparent 24%),
        linear-gradient(transparent 95%, rgba(18, 23, 35, 0.03) 100%);
}

body.site-rummyyonorummy .site-header {
    background: rgba(251, 242, 231, 0.9);
}

body.site-rummyyonorummy .header-cta {
    background: linear-gradient(135deg, #b24f2a, #7f3120);
}

body.site-rummyyonorummy .hero-panel-card-featured,
body.site-rummyyonorummy .hero-panel-card-ladder,
body.site-rummyyonorummy .category-card,
body.site-rummyyonorummy .mini-collection,
body.site-rummyyonorummy .reason-card,
body.site-rummyyonorummy .content-card,
body.site-rummyyonorummy .sidebar-card,
body.site-rummyyonorummy .app-hero-card {
    border: 1px solid rgba(159, 84, 44, 0.12);
}

body.site-rummyyonorummy .category-card {
    border-left: 4px solid rgba(169, 76, 49, 0.7);
}

body.site-rummyyonorummy .hero-panel-card-featured {
    position: relative;
    overflow: hidden;
}

body.site-rummyyonorummy .hero-panel-card-featured::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(169, 76, 49, 0.32), transparent);
}

body.site-rummyyonorummy .hero-rank-list {
    display: grid;
    gap: 12px;
}

body.site-rummyyonorummy .hero-rank-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px dashed rgba(159, 84, 44, 0.24);
    background: rgba(255, 251, 247, 0.76);
}

body.site-rummyyonorummy .hero-rank-no {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.1rem;
    color: var(--accent);
}

body.site-rummyyonorummy .hero-rank-copy {
    display: grid;
    gap: 4px;
}

body.site-rummyyonorummy .hero-rank-copy span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.4;
}

body.site-rummyyonorummy .hero-rank-score {
    white-space: nowrap;
    color: var(--cobalt);
}

body.site-rummyyonorummy .app-note-strip {
    margin-top: 18px;
}

body.site-rummyyonorummy .app-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(169, 76, 49, 0.72), rgba(201, 94, 42, 0.2));
}

body.site-rummyyonorummy .text-link.strong {
    color: var(--accent);
}

.rummy-ledger-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 250, 245, 0.94);
    border-bottom: 2px solid rgba(121, 70, 35, 0.18);
}

.rummy-ledger-header-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    min-height: 76px;
}

.rummy-ledger-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
}

.rummy-ledger-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.rummy-ledger-nav-menu {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.rummy-ledger-nav-menu a {
    padding: 10px 12px;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-weight: 800;
}

.rummy-ledger-nav-menu a.is-active,
.rummy-ledger-nav-menu a:hover {
    color: var(--ink);
    border-color: var(--accent);
}

.rummy-ledger-header-cta {
    padding: 12px 18px;
    background: #251a16;
    color: #fff;
    font-weight: 900;
}

.rummy-ledger-footer {
    margin-top: 34px;
    padding: 30px 0;
    background: #251a16;
    color: #fff;
}

.rummy-ledger-footer-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.rummy-footer-mark {
    display: grid;
    gap: 4px;
}

.rummy-footer-mark span {
    color: #f2b184;
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 900;
}

.rummy-footer-mark strong {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.6rem;
}

.rummy-footer-lines {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.rummy-footer-lines a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.rummy-collection-mast {
    padding: 38px 0 20px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 235, 0.52)),
        repeating-linear-gradient(0deg, rgba(123, 74, 45, 0.05) 0 1px, transparent 1px 32px);
    border-bottom: 1px solid rgba(121, 70, 35, 0.14);
}

.rummy-collection-shell {
    max-width: 900px;
    margin-left: max(16px, calc((100% - var(--shell)) / 2));
}

.rummy-collection-shell h1 {
    margin: 8px 0 12px;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 0.95;
}

.rummy-collection-shell p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.06rem;
}

.rummy-collection-search input {
    width: min(100%, 520px);
    min-height: 52px;
    margin-top: 18px;
    padding: 0 16px;
    border: 1px solid rgba(121, 70, 35, 0.18);
    background: #fffaf5;
    font: inherit;
}

.rummy-collection-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.rummy-collection-feature {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 14px;
    padding: 22px;
    background: #fffaf5;
    border: 1px solid rgba(121, 70, 35, 0.16);
    box-shadow: 8px 8px 0 rgba(166, 61, 60, 0.08);
}

.rummy-collection-feature img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.rummy-collection-feature h2 {
    margin: 0;
    font-size: 1.8rem;
}

.rummy-collection-feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.rummy-collection-table {
    display: grid;
}

.rummy-collection-row {
    display: grid;
    grid-template-columns: 46px 70px minmax(0, 1fr) 92px auto;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(121, 70, 35, 0.14);
}

.rummy-row-number,
.rummy-row-bonus {
    color: var(--accent);
    font-weight: 900;
}

.rummy-collection-row img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.rummy-collection-row strong {
    font-size: 1.2rem;
}

.rummy-collection-row p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.rummy-row-open {
    font-weight: 900;
    color: var(--accent);
}

@media (max-width: 720px) {
    body.site-rummyyonorummy .hero-rank-card {
        grid-template-columns: minmax(0, 1fr);
    }

    body.site-rummyyonorummy .hero-rank-score {
        justify-self: start;
    }
}

@media (max-width: 920px) {
    .rummy-ledger-header-shell {
        display: flex;
    }

    .rummy-ledger-header-cta {
        display: none;
    }

    .rummy-ledger-nav-menu {
        position: fixed;
        inset: 84px 16px auto;
        display: grid;
        padding: 16px;
        background: #fffaf5;
        border: 1px solid rgba(121, 70, 35, 0.18);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    body.nav-open .rummy-ledger-nav-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .rummy-collection-layout,
    .rummy-ledger-footer-shell {
        grid-template-columns: 1fr;
    }

    .rummy-collection-feature {
        position: static;
    }

    .rummy-footer-lines {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .rummy-collection-row {
        grid-template-columns: 46px 64px minmax(0, 1fr);
    }

    .rummy-row-bonus,
    .rummy-row-open {
        grid-column: 3;
    }
}
