:root {
    --bg-deep: #0a1b2c;
    --bg-mid: #122a40;
    --bg-soft: #1b3d56;
    --surface: rgba(249, 243, 231, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.08);
    --surface-line: rgba(214, 189, 151, 0.35);
    --text-main: #f7efe4;
    --text-soft: #d2c0aa;
    --ink: #183043;
    --ink-soft: #596978;
    --accent: #c56524;
    --accent-soft: #e7b065;
    --teal: #1b7d7f;
    --teal-soft: #66bfb2;
    --success: #216b4f;
    --warning: #9f6414;
    --danger: #9f3b2c;
    --shadow-strong: 0 32px 72px rgba(4, 12, 23, 0.35);
    --shadow-soft: 0 20px 44px rgba(18, 27, 39, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Times New Roman", Times, serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 8% 12%, rgba(197, 101, 36, 0.22), transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(27, 125, 127, 0.18), transparent 20%),
        linear-gradient(140deg, #183655 0%,  #164980 42%, #17324b 100%);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Times New Roman", Times, serif;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bg-orb,
.bg-grid {
    pointer-events: none;
    position: fixed;
    inset: auto;
    z-index: -1;
}

.bg-orb {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.45;
}

.orb-one {
    top: -90px;
    left: -90px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.55), transparent 70%);
    animation: drift 16s ease-in-out infinite;
}

.orb-two {
    right: -100px;
    bottom: 12%;
    background: radial-gradient(circle, rgba(23, 190, 187, 0.36), transparent 70%);
    animation: drift 20s ease-in-out infinite reverse;
}

.bg-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 248, 236, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 248, 236, 0.032) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 92%);
}

.app-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    min-height: 100vh;
    padding: 24px;
    position: relative;
}

.sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    min-height: calc(100vh - 48px);
    border: 1px solid var(--surface-line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(8, 22, 34, 0.95), rgba(13, 30, 46, 0.88)),
        linear-gradient(135deg, rgba(197, 101, 36, 0.08), transparent 34%);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    animation: rise-in 0.7s ease both;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #fff;
    background: linear-gradient(135deg, #b95821, #e2ae63);
    box-shadow: 0 18px 34px rgba(185, 88, 33, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-copy strong {
    font-size: 1.12rem;
}

.brand-copy span {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-label,
.mini-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #efc48f;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    background: rgba(255, 248, 240, 0.03);
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.nav-link span {
    font-weight: 700;
    color: #eef6f8;
}

.nav-link small {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.nav-link:hover,
.nav-link.active {
    transform: translateX(4px);
    border-color: rgba(231, 176, 101, 0.24);
    background: linear-gradient(135deg, rgba(197, 101, 36, 0.18), rgba(231, 176, 101, 0.08));
}

.nav-link.active span,
.nav-link:hover span,
.nav-link.active small,
.nav-link:hover small {
    color: #fff;
}

.nav-link.locked {
    border-style: dashed;
}

.sidebar-card {
    border-radius: 26px;
    padding: 22px;
    background: linear-gradient(160deg, rgba(255, 248, 236, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 248, 236, 0.12);
}

.sidebar-card h3 {
    margin-top: 12px;
    font-size: 1.3rem;
    line-height: 1.35;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.sidebar-stats li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-soft);
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-stats strong {
    color: #fff;
}

.sidebar-actions {
    margin-top: 18px;
}

.sidebar-button {
    width: 100%;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 6px 0 0;
}

.main-content > * {
    animation: rise-in 0.82s ease both;
}

.main-content > *:nth-child(2) {
    animation-delay: 0.06s;
}

.main-content > *:nth-child(3) {
    animation-delay: 0.12s;
}

.main-content > *:nth-child(4) {
    animation-delay: 0.18s;
}

.page-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.page-topbar h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-top: 8px;
}

.page-copy {
    max-width: 70ch;
    margin-top: 14px;
    line-height: 1.75;
    color: var(--text-soft);
}

.topbar-actions,
.hero-actions,
.tag-row,
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-actions {
    justify-content: flex-end;
    align-items: center;
}

.topbar-bell-button {
    width: 50px;
    height: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(44, 44, 44);
    border-radius: 50%;
    cursor: pointer;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.13);
    border: none;
    flex-shrink: 0;
}

.topbar-bell-icon {
    width: 27px;
    height: 27px;
}

.topbar-bell-icon path {
    fill: #fff;
}

.topbar-bell-button:hover {
    background-color: rgb(56, 56, 56);
}

.topbar-bell-button:hover .topbar-bell-icon {
    animation: bellRing 0.9s both;
}

.topbar-bell-button:active {
    transform: scale(0.8);
}

@keyframes bellRing {
    0%,
    100% {
        transform-origin: top;
    }

    15% {
        transform: rotateZ(10deg);
    }

    30% {
        transform: rotateZ(-10deg);
    }

    45% {
        transform: rotateZ(5deg);
    }

    60% {
        transform: rotateZ(-5deg);
    }

    75% {
        transform: rotateZ(2deg);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #f2c58d;
}

.eyebrow.ink {
    color: #b45a22;
}

.info-chip,
.soft-chip,
.tag,
.status,
.delta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}

.info-chip {
    padding: 10px 14px;
    color: #fff6eb;
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(255, 248, 236, 0.12);
    font-size: 0.86rem;
}

.info-chip.dark {
    color: var(--ink);
    background: rgba(27, 125, 127, 0.12);
    border-color: rgba(27, 125, 127, 0.16);
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.92fr);
    gap: 26px;
}

.hero-copy,
.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-line);
    box-shadow: var(--shadow-strong);
}

.hero-copy {
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(12, 31, 47, 0.96), rgba(17, 39, 60, 0.9)),
        linear-gradient(135deg, rgba(197, 101, 36, 0.1), transparent 42%);
}

.hero-copy::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 101, 36, 0.22), transparent 68%);
}

.hero-title {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 4rem);
    max-width: 10ch;
    line-height: 0.98;
}

.hero-text {
    max-width: 62ch;
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-actions {
    margin-top: 26px;
}

.button {
    padding: 13px 20px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #fff;
    box-shadow: 0 18px 28px rgba(197, 101, 36, 0.24);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.button.secondary {
    background: rgba(232, 150, 7, 0.651);
    border: 1px solid rgba(255, 248, 236, 0.12);
    box-shadow: none;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 34px rgba(197, 101, 36, 0.3);
}

.button.secondary:hover {
    box-shadow: none;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.stat-tile {
    position: relative;
    z-index: 1;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.stat-value {
    display: block;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
}

.blurred-stat-value {
    filter: blur(8px);
    user-select: none;
}

.stat-label {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 125, 127, 0.18), transparent 70%);
}

.hero-image img,
.image-card img {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    filter: drop-shadow(0 28px 36px rgba(2, 12, 18, 0.22));
    animation: floaty 7s ease-in-out infinite;
}

.page-index .hero-image {
    min-height: 100%;
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
    background:
        radial-gradient(circle at 82% 62%, rgba(40, 170, 178, 0.2), transparent 24%),
        linear-gradient(180deg, #c8e3fb 0%, #9fcaf0 56%, #cfe4f6 100%);
}

.page-index .hero-image img {
    width: 100%;
    height: 100%;
    max-width: 474px;
    margin: 0;
    object-fit: cover;
    object-position: 62% center;
}

.panel,
.profile-card,
.feature-card,
.queue-column {
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(216, 196, 163, 0.9);
    box-shadow: var(--shadow-soft);
}

.panel {
    padding: 26px;
}

.profile-card,
.feature-card,
.queue-column {
    padding: 22px;
}

.dark-panel {
    background: linear-gradient(160deg, rgba(12, 29, 45, 0.98), rgba(16, 39, 58, 0.96));
    color: var(--text-main);
    border-color: rgba(210, 184, 142, 0.18);
    box-shadow: var(--shadow-strong);
}

.dark-panel h2,
.dark-panel h3 {
    color: #fff;
}

.ink-title,
.feature-card h3,
.queue-column h3,
.profile-card h2 {
    color: var(--ink);
}

.ink-title.small,
.profile-card h2.small {
    font-size: 1.4rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.text-link {
    font-weight: 700;
    color: #b45a22;
}

.guest-blur-block {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
}

.guest-blur-block::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 248, 236, 0.22);
    z-index: 1;
    pointer-events: none;
}

.guest-blur-panel {
    min-height: 100%;
}

.guest-blur-target {
    filter: blur(14px);
    transform: scale(1.01);
    pointer-events: none;
    user-select: none;
}

.guest-blur-note {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 36px);
    padding: 12px 18px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(181, 90, 34, 0.96), rgba(231, 176, 101, 0.96));
    box-shadow: 0 18px 30px rgba(197, 101, 36, 0.24);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdfa, #f3eadc);
    border: 1px solid #e2d0b4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover,
.feature-card:hover,
.profile-card:hover,
.queue-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(5, 19, 27, 0.16);
}

.metric-value {
    font-size: 2rem;
    color: var(--ink);
}

.delta {
    width: fit-content;
    padding: 8px 12px;
    font-size: 0.8rem;
}

.delta.positive,
.status.success {
    color: var(--success);
    background: rgba(15, 143, 99, 0.12);
}

.delta.info,
.status.info {
    color: #0f7f8c;
    background: rgba(23, 190, 187, 0.12);
}

.delta.warning,
.status.warning {
    color: var(--warning);
    background: rgba(185, 106, 16, 0.12);
}

.delta.alert,
.status.alert {
    color: var(--danger);
    background: rgba(190, 60, 44, 0.12);
}

.metric-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 78px;
    margin-top: auto;
}

.metric-bars span {
    flex: 1;
    height: var(--bar);
    border-radius: 999px 999px 18px 18px;
    background: linear-gradient(180deg, var(--accent), var(--accent-soft));
    animation: grow-bar 1s ease both;
    transform-origin: bottom;
}

.two-column,
.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.cards-3,
.feature-grid,
.queue-board {
    display: grid;
    gap: 18px;
}

.cards-3,
.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.queue-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    min-height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -30px;
    bottom: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 101, 36, 0.12), transparent 72%);
}

.feature-link {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-link:hover {
    border-color: rgba(197, 101, 36, 0.26);
}

.feature-icon,
.avatar,
.timeline-step {
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: 0 16px 26px rgba(197, 101, 36, 0.2);
}

.feature-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.locked-note,
.feature-cta {
    position: relative;
    z-index: 1;
}

.locked-note {
    padding: 7px 12px;
    border-radius: 999px;
    color: #a1511f;
    background: rgba(197, 101, 36, 0.12);
    font-size: 0.78rem;
    font-weight: 700;
}

.feature-cta {
    margin-top: auto;
    color: #a1511f;
    font-weight: 700;
}

.feature-card p,
.card-copy,
.note-copy,
.timeline-copy p,
.footer-copy {
    color: var(--ink-soft);
    line-height: 1.75;
}

.crm-footer .footer-copy {
    color: var(--text-soft);
}

.queue-column {
    background: linear-gradient(180deg, #fffdf8, #f6eee3);
}

.queue-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #f8f1e5;
    border: 1px solid #e4d7bf;
}

.queue-card strong {
    color: var(--ink);
}

.queue-card span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.data-table thead th {
    text-align: left;
    padding: 0 12px 14px 0;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #7d6d5f;
    border-bottom: 1px solid #dcccb1;
}

.data-table tbody td {
    padding: 16px 12px 16px 0;
    border-bottom: 1px solid #ece1cf;
    color: var(--ink);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.status {
    padding: 8px 12px;
    font-size: 0.78rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.timeline-step {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: 0 14px 24px rgba(197, 101, 36, 0.2);
}

.timeline-copy {
    border-radius: 22px;
    padding: 18px 20px;
    border: 1px solid #dfd0b6;
    background: #fffdfa;
}

.dark-copy {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.dark-copy p {
    color: var(--text-soft);
}

.list-stack,
.bar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid #e0d3bc;
    background: #fbf5eb;
}

.item-cluster {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
}

.avatar.alt {
    background: linear-gradient(135deg, #1784be, #74c1f1);
}

.avatar.cool {
    background: linear-gradient(135deg, #109f88, #63dec9);
}

.item-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.item-copy strong {
    color: var(--ink);
}

.item-copy span {
    color: var(--ink-soft);
    line-height: 1.5;
}

.item-copy.solo {
    gap: 8px;
}

.progress-track {
    width: 100%;
    height: 10px;
    margin-top: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #e6d8c1;
}

.progress-fill {
    width: var(--value);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--teal), var(--teal-soft));
    animation: slide-fill 1.1s ease both;
}

.rider-card .item-copy {
    width: min(360px, 100%);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.kpi-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.kpi-box {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid #e0d3bc;
    background: #fbf5eb;
}

.kpi-box strong {
    display: block;
    margin-top: 8px;
    line-height: 1.5;
    color: var(--ink);
}

.mini-label {
    color: var(--ink-soft);
}

.tag {
    padding: 8px 12px;
    background: rgba(197, 101, 36, 0.12);
    color: #a1511f;
    font-size: 0.78rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.note-card {
    background: linear-gradient(145deg, #fff6e9, #fffdf8);
    border-color: rgba(197, 101, 36, 0.18);
}

.compact-note {
    margin-top: 22px;
}

.soft-dark {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.soft-dark .item-copy strong {
    color: #fff;
}

.soft-dark .item-copy span {
    color: var(--text-soft);
}

.image-card.light {
    background: linear-gradient(180deg, #fffdfa, #f0e8dc);
    color: var(--ink);
}

.crm-footer {
    grid-column: 2 / -1;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 248, 236, 0.12);
    background: linear-gradient(180deg, rgba(8, 23, 35, 0.92), rgba(13, 30, 44, 0.86));
    box-shadow: var(--shadow-strong);
    margin-bottom: 24px;
    animation: rise-in 0.95s ease both;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
}

.footer-grid h3,
.footer-grid h4 {
    color: #fff;
}

.footer-grid h4 {
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a {
    color: var(--text-main);
}

.soft-chip {
    padding: 9px 13px;
    color: #fff;
    background: rgba(255, 248, 236, 0.08);
    border: 1px solid rgba(255, 248, 236, 0.08);
    font-size: 0.82rem;
}

.footer-stamp {
    margin-top: 18px;
    color: var(--text-soft);
}

.compact-button {
    padding: 10px 16px;
    min-height: 42px;
}

.guest-banner {
    background: linear-gradient(145deg, #fff8ef, #fbf1e2);
}

.login-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.login-frame {
    position: relative;
    width: min(760px, 100%);
    padding: 2px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(7, 22, 37, 0.24);
}

.login-frame::before {
    content: "";
    position: absolute;
    inset: -180px;
    background: conic-gradient(
        from 0deg,
        #2f7cff,
        #ff4d67,
        #ff53c7,
        #32c47d,
        #2f7cff
    );
    animation: border-spin 6s linear infinite;
}

.login-frame::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 30px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 46%);
    pointer-events: none;
}

.login-card {
    position: relative;
    z-index: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border: none;
    border-radius: 34px;
    background: linear-gradient(160deg, #fff8ef, #fdf3e4);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

.input-shell {
    position: relative;
    display: block;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 22px;
    height: 22px;
    color: #b45a22;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.input-field {
    width: 100%;
    padding: 14px 16px 14px 56px;
    border-radius: 18px;
    border: 1px solid #dac9ac;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    outline: none;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.input-field:focus {
    border-color: rgba(197, 101, 36, 0.5);
    box-shadow: 0 0 0 4px rgba(197, 101, 36, 0.12);
}

.login-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.alert-banner {
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
    line-height: 1.6;
}

.alert-banner.warning {
    color: #7b510f;
    background: rgba(231, 176, 101, 0.2);
    border-color: rgba(159, 100, 20, 0.18);
}

.alert-banner.danger {
    color: #7d3024;
    background: rgba(159, 59, 44, 0.12);
    border-color: rgba(159, 59, 44, 0.18);
}

.credential-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.credential-item {
    padding: 18px;
    border-radius: 22px;
    border: 1px solid #dfd0b6;
    background: rgba(255, 255, 255, 0.55);
}

.credential-item strong {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    word-break: break-word;
}

.reports-main {
    gap: 22px;
}

.reports-page-topbar {
    align-items: center;
}

.reports-board {
    position: relative;
    overflow: hidden;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(124, 92, 255, 0.1), transparent 30%),
        radial-gradient(circle at left bottom, rgba(31, 198, 220, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
    border-color: #dbe6f2;
}

.reports-board::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 30px;
    border: 1px solid rgba(221, 231, 242, 0.7);
    pointer-events: none;
}

.reports-command-bar,
.reports-stat-card,
.reports-card {
    position: relative;
    z-index: 1;
}

.reports-command-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 26px;
    border: 1px solid #e3ebf5;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 30px rgba(28, 52, 81, 0.07);
    backdrop-filter: blur(12px);
}

.reports-command-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.reports-mini-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7d90a8;
}

.reports-command-copy strong {
    color: #182a40;
    font-size: 1.05rem;
    line-height: 1.5;
}

.reports-search-shell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid #e4eaf3;
    background: #fff;
    color: #7b8fa6;
}

.reports-search-input {
    width: 100%;
    border: none;
    outline: none;
    color: #183043;
    background: transparent;
}

.reports-search-input::placeholder {
    color: #8ea0b3;
}

.reports-inline-icon,
.reports-icon-badge,
.reports-round-button,
.reports-avatar {
    display: grid;
    place-items: center;
}

.reports-inline-icon svg,
.reports-icon-badge svg,
.reports-round-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.reports-command-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reports-round-button {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid #e4eaf3;
    background: #fff;
    color: #62758a;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.reports-round-button:hover,
.reports-filter-chip:hover {
    transform: translateY(-2px);
    border-color: #cedaea;
    box-shadow: 0 12px 24px rgba(26, 47, 73, 0.08);
}

.reports-user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    border: 1px solid #e4eaf3;
    background: #fff;
    min-width: 0;
}

.reports-user-pill strong {
    display: block;
    color: #182a40;
    font-size: 0.92rem;
}

.reports-user-pill span {
    color: #7b8fa6;
    font-size: 0.8rem;
}

.reports-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 14px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #7c5cff, #1fc6dc);
    box-shadow: 0 16px 24px rgba(93, 106, 255, 0.24);
}

.reports-stat-grid,
.reports-focus-grid,
.reports-lower-grid,
.reports-category-grid,
.reports-symbol-grid,
.reports-chart-summary {
    display: grid;
}

.reports-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.reports-stat-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 210px;
    padding: 22px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid #e4eaf3;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 32px rgba(28, 52, 81, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reports-stat-card::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -38px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.16), transparent 68%);
    pointer-events: none;
}

.reports-stat-card:hover,
.reports-card:hover,
.reports-category-card:hover,
.reports-symbol-card:hover,
.reports-signal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 38px rgba(24, 46, 71, 0.12);
}

.reports-stat-card.tone-lilac {
    --report-tone: #7c5cff;
    --report-tone-soft: rgba(124, 92, 255, 0.12);
}

.reports-stat-card.tone-cyan {
    --report-tone: #1fc6dc;
    --report-tone-soft: rgba(31, 198, 220, 0.12);
}

.reports-stat-card.tone-amber {
    --report-tone: #ff9f43;
    --report-tone-soft: rgba(255, 159, 67, 0.14);
}

.reports-stat-card.tone-mint {
    --report-tone: #2bcf8b;
    --report-tone-soft: rgba(43, 207, 139, 0.14);
}

.reports-stat-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.reports-stat-title {
    margin-bottom: 10px;
    color: #64778d;
    font-size: 0.98rem;
    font-weight: 600;
}

.reports-stat-value {
    color: #16283d;
    font-size: clamp(2rem, 3vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.reports-icon-badge {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    color: var(--badge-color, var(--report-tone, #7c5cff));
    background: var(--badge-bg, var(--report-tone-soft, rgba(124, 92, 255, 0.12)));
    border: 1px solid var(--badge-border, #e4ebf5);
}

.reports-stat-delta {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--report-tone, #7c5cff);
    background: var(--report-tone-soft, rgba(124, 92, 255, 0.12));
    font-size: 0.8rem;
    font-weight: 700;
}

.reports-stat-copy,
.reports-card-head p,
.reports-category-card p,
.reports-signal-copy p {
    color: #73869c;
    line-height: 1.7;
}

.reports-sparkline {
    margin-top: auto;
    color: var(--report-tone, #7c5cff);
}

.reports-sparkline svg {
    width: 100%;
    height: 56px;
}

.reports-sparkline .spark-fill {
    fill: currentColor;
    opacity: 0.14;
    stroke: none;
}

.reports-sparkline .spark-line {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reports-focus-grid {
    grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.92fr);
    gap: 20px;
    margin-top: 22px;
}

.reports-lower-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 20px;
    margin-top: 20px;
}

.reports-card {
    padding: 24px;
    border-radius: 28px;
    border: 1px solid #e4ebf5;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 32px rgba(28, 52, 81, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reports-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.reports-card-head .ink-title {
    margin-top: 8px;
}

.reports-select-chip,
.reports-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 16px;
    border: 1px solid #e4eaf3;
    background: #fff;
    color: #586d84;
    font-weight: 700;
}

.reports-filter-chip {
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.reports-area-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.reports-axis-y {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0 34px;
    color: #91a2b5;
    font-size: 0.78rem;
    font-weight: 700;
}

.reports-area-frame {
    position: relative;
    min-height: 272px;
    border-radius: 26px;
    border: 1px solid #edf2f8;
    background: linear-gradient(180deg, #fbfdff, #f4f8fc);
    overflow: hidden;
}

.reports-area-frame::before {
    content: "";
    position: absolute;
    inset: 22px 18px 36px;
    background-image: linear-gradient(rgba(147, 164, 184, 0.18) 1px, transparent 1px);
    background-size: 100% 25%;
    pointer-events: none;
}

.reports-area-svg {
    position: absolute;
    inset: 22px 18px 34px;
    width: calc(100% - 36px);
    height: calc(100% - 56px);
}

.report-area-fill {
    fill: url(#reportAreaFill);
}

.report-area-line {
    fill: none;
    stroke: #8a58ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.report-area-focus {
    stroke: #b388ff;
    stroke-width: 2;
    stroke-dasharray: 7 7;
}

.report-area-point {
    fill: #fff;
    stroke: #ff5f88;
    stroke-width: 4;
}

.reports-chart-callout {
    position: absolute;
    top: 16px;
    left: 56%;
    transform: translateX(-50%);
    padding: 10px 14px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 24px rgba(34, 56, 82, 0.12);
    text-align: center;
}

.reports-chart-callout strong {
    display: block;
    color: #16283d;
    font-size: 0.95rem;
}

.reports-chart-callout span {
    color: #7a8da3;
    font-size: 0.78rem;
}

.reports-axis-x {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
    padding: 0 8px 0 10px;
    color: #91a2b5;
    font-size: 0.82rem;
    font-weight: 700;
}

.reports-chart-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.reports-summary-tile {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #e7eef7;
    background: #f8fbff;
}

.reports-summary-tile span {
    display: block;
    color: #7c90a6;
    font-size: 0.84rem;
}

.reports-summary-tile strong {
    display: block;
    margin-top: 8px;
    color: #17293f;
    font-size: 1.24rem;
}

.reports-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.reports-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #647990;
    font-size: 0.86rem;
    font-weight: 600;
}

.reports-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.reports-dot.tone-blue {
    background: #35b5ff;
}

.reports-dot.tone-orange {
    background: #ff8a2c;
}

.reports-dot.tone-gold {
    background: #ffca3a;
}

.reports-bar-chart {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
    min-height: 286px;
    margin-top: 18px;
    padding: 20px 16px 14px;
    border-radius: 24px;
    border: 1px solid #edf2f8;
    background: linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.reports-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.reports-bar-stack {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 220px;
}

.reports-bar {
    width: 16px;
    height: var(--bar);
    border-radius: 999px 999px 10px 10px;
    animation: grow-bar 1s ease both;
}

.reports-bar.tone-blue {
    background: linear-gradient(180deg, #4fd0ff, #22a9ff);
}

.reports-bar.tone-orange {
    background: linear-gradient(180deg, #ffb05f, #ff7b19);
}

.reports-bar.tone-gold {
    background: linear-gradient(180deg, #ffd86b, #ffbf1c);
}

.reports-bar-group small {
    color: #91a2b5;
    font-size: 0.82rem;
    font-weight: 700;
}

.reports-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.reports-category-card,
.reports-symbol-card,
.reports-signal-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reports-category-card {
    padding: 18px;
    border-radius: 24px;
    border: 1px solid #e6edf6;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 14px 24px rgba(28, 52, 81, 0.05);
}

.reports-category-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.reports-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 50%;
    background: conic-gradient(var(--ring-color) var(--fill), #e6edf6 0);
}

.reports-ring::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: #fff;
}

.reports-ring span {
    position: relative;
    z-index: 1;
    color: #17293f;
    font-size: 0.8rem;
    font-weight: 800;
}

.reports-category-card strong,
.reports-signal-copy strong,
.reports-symbol-card strong {
    color: #17293f;
}

.reports-signal-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reports-signal-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #e6edf6;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 14px 24px rgba(28, 52, 81, 0.05);
}

.reports-signal-copy {
    min-width: 0;
}

.reports-signal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.reports-signal-pill.tone-success {
    color: #146849;
    background: rgba(43, 207, 139, 0.14);
}

.reports-signal-pill.tone-warning {
    color: #96601c;
    background: rgba(255, 159, 67, 0.16);
}

.reports-signal-pill.tone-info {
    color: #197b90;
    background: rgba(31, 198, 220, 0.14);
}

.reports-symbol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.reports-symbol-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #e6edf6;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 14px 24px rgba(28, 52, 81, 0.05);
}

.reports-symbol-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.reports-symbol-card span:last-child {
    color: #7a8da3;
    font-size: 0.86rem;
    line-height: 1.5;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(24px, -12px, 0);
    }
}

@keyframes grow-bar {
    from {
        transform: scaleY(0.2);
        opacity: 0.3;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes slide-fill {
    from {
        width: 0;
    }

    to {
        width: var(--value);
    }
}

@keyframes border-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1260px) {
    .metric-grid,
    .queue-board,
    .cards-3,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero {
        grid-template-columns: 1fr;
    }

    .reports-command-bar,
    .reports-focus-grid,
    .reports-lower-grid {
        grid-template-columns: 1fr;
    }

    .reports-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .nav-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crm-footer {
        grid-column: auto;
    }

    .footer-grid,
    .two-column,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .reports-command-actions {
        flex-wrap: wrap;
    }

    .reports-command-bar {
        padding: 18px;
    }

    .reports-category-grid,
    .reports-symbol-grid,
    .reports-chart-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .app-shell {
        padding: 14px;
        gap: 18px;
    }

    .sidebar-inner,
    .panel,
    .hero-copy,
    .profile-card,
    .feature-card,
    .queue-column,
    .crm-footer {
        padding: 20px;
    }

    .page-topbar,
    .topbar-actions,
    .section-head,
    .profile-header,
    .list-item,
    .login-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar-actions {
        justify-content: flex-start;
    }

    .guest-blur-note {
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    .hero-metrics,
    .cards-3,
    .feature-grid,
    .queue-board,
    .metric-grid,
    .nav-list,
    .kpi-strip,
    .credential-list,
    .reports-stat-grid {
        grid-template-columns: 1fr;
    }

    .bar-row {
        grid-template-columns: 1fr;
    }

    .data-table {
        min-width: 560px;
    }

    .login-frame {
        border-radius: 28px;
    }

    .login-card {
        border-radius: 26px;
    }

    .page-index .hero-image {
        min-height: 420px;
    }

    .reports-board,
    .reports-card {
        padding: 20px;
    }

    .reports-command-bar {
        gap: 14px;
    }

    .reports-search-shell {
        min-width: 0;
    }

    .reports-user-pill {
        width: 100%;
    }

    .reports-area-layout,
    .reports-signal-card {
        grid-template-columns: 1fr;
    }

    .reports-axis-y {
        display: none;
    }

    .reports-axis-x {
        padding: 0;
        font-size: 0.76rem;
    }

    .reports-chart-callout {
        left: 62%;
    }

    .reports-bar-chart {
        gap: 12px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .reports-bar-group {
        min-width: 54px;
    }

    .reports-category-grid,
    .reports-symbol-grid {
        grid-template-columns: 1fr;
    }
}
