.site-footer {
    width: 100vw;
    background: #1a1a1a;
    margin-bottom: 24px;
    align-self: flex-start;
}

.logo-img {
    width: 200px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
}

/* === New Landing / Hero Styles === */
/* Palette unified (no black / no separate section colors) */
:root {
    /* Layout metrics */
    --header-height: 96px;
    --header-height-mobile: 64px;
    --color-surface: #20252b;
    /* unified base color */
    --color-surface-soft: #272d34;
    /* subtle raised surfaces */
    --color-bg: var(--color-surface);
    --color-bg-alt: var(--color-surface-soft);
    --color-text: #f5f7fa;
    --color-text-dim: #b7c0c8;
    --color-accent: #FF6A00;
    /* updated primary brand color */
    --color-accent-alt: #FF9A40;
    /* supporting tint */
    --color-gradient-from: var(--color-accent);
    --color-gradient-to: var(--color-accent-alt);
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --max-width: 1240px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --shadow-soft: 0 4px 12px -2px rgba(0, 0, 0, .5), 0 2px 4px -1px rgba(0, 0, 0, .3);
}

html {
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', system-ui, Arial, sans-serif;
    line-height: 1.4;
    color: var(--color-text);
    background: var(--color-surface);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding-top: var(--header-height);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 3rem);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(32, 37, 43, .78);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: var(--header-height);
}

.brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
}

.brand__logo {
    height: 100px;
    width: auto;
    display: block;
    aspect-ratio: auto;
    max-height: 120px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .45));
}

@media (max-width:900px) {
    .brand__logo {
        height: 100px;
        max-height: 120px;
    }
}

@media (max-width:680px) {
    .brand__logo {
        height: 80px;
        max-height: 80px;
    }
}

/* Larger app logo variant */
.brand__logo--lg {
    width: clamp(200px, 20vw, 200px);
}

.primary-nav {
    margin-left: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    padding: 0;
    margin: 0;
}

.nav-list a {
    color: var(--color-text-dim);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    font-size: .95rem;
    letter-spacing: .2px;
    transition: color .25s var(--ease);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--color-gradient-from), var(--color-gradient-to));
    border-radius: 2px;
    transition: width .35s var(--ease);
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--color-text);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
}

.btn {
    --btn-bg: var(--color-bg-alt);
    --btn-color: var(--color-text);
    cursor: pointer;
    appearance: none;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    padding: 0.9rem 1.4rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--btn-bg);
    color: var(--btn-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .4);
    transition: background .3s var(--ease), transform .25s var(--ease);
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent-alt);
    outline-offset: 2px;
}

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    --btn-bg: var(--color-accent);
}

.btn--primary:hover {
    --btn-bg: #e75f00;
}

.btn--primary:active {
    --btn-bg: #cc5400;
}

.btn--primary.active,
.btn--primary[aria-pressed="true"] {
    --btn-bg: #cc5400;
}

.btn--gradient {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-alt));
    color: #111;
}

.btn--lg {
    font-size: 1rem;
    padding: 1.05rem 1.9rem;
}

.btn--secondary {
    --btn-bg: var(--color-surface-soft);
    color: var(--color-text-dim);
    border: 1px solid rgba(255, 255, 255, .08);
}

.btn--secondary:hover {
    background: var(--color-surface-soft);
    color: var(--color-text);
}

.btn--sm {
    font-size: .75rem;
    padding: .55rem .85rem;
    border-radius: 14px;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: var(--color-surface-soft);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    transition: background .3s var(--ease);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, .08);
}

.nav-toggle__bar {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform .4s var(--ease), opacity .3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    padding: clamp(3rem, 6vw + 1rem, 8rem) 0 5rem;
    overflow: hidden;
    background: var(--color-surface);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
}

.hero__inner {
    display: grid;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 1.3rem;
    letter-spacing: -.5px;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 1.25vw + .8rem, 1.35rem);
    max-width: 46ch;
    margin: 0 0 2rem;
    color: var(--color-text-dim);
    font-weight: 500;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero__qr {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.qr-badge {
    width: 130px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 2%, #ffe8d2 12%, #ffba63 55%, #ff8a05 100%);
    position: relative;
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, .55);
    display: grid;
    place-items: center;
}

.qr-badge::after {
    content: "";
    width: 72px;
    height: 72px;
    background: #111;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23fff' d='M8 8h20v20H8V8Zm16 16v-12h-12v12h12ZM38 8h20v20H38V8Zm16 16v-12h-12v12h12ZM68 8h24v24H68V8Zm20 20v-16H72v16h16ZM8 38h24v24H8V38Zm20 20v-16H12v16h16ZM38 38h24v24H38V38Zm20 20v-16H42v16h16ZM68 42h12v-4h8v20h-8v-12H72v16H60V68h8v4h-8v8H48v-8h-8v-8H28v-8h8v-4h-8V40h12v8h4v-8h12v8h4v-8h8v2Z'/%3E%3C/svg%3E") center/contain no-repeat;
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .5));
}

.qr-caption {
    font-size: .85rem;
    letter-spacing: .4px;
    line-height: 1.25;
    color: var(--color-text-dim);
    margin: 0;
}

/* Phone mockup */
.hero__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    --device-width: 300px;
    width: var(--device-width);
    max-width: 100%;
    aspect-ratio: 300/620;
    margin: 0 auto;
    position: relative;
    border-radius: 38px;
    padding: 12px 14px 18px;
    background: var(--color-surface-soft);
    box-shadow: 0 18px 44px -12px rgba(0, 0, 0, .55), 0 6px 16px -4px rgba(0, 0, 0, .5);
    display: flex;
}

.phone-mockup::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 42%;
    height: 26px;
    background: var(--color-surface);
    border-radius: 0 0 16px 16px;
}

.phone-mockup__screen {
    flex: 1;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    position: relative;
    background: #000;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-widget {
    position: absolute;
    right: -40px;
    bottom: 42px;
    width: 140px;
    height: 160px;
    background: var(--color-surface-soft);
    border-radius: 26px;
    display: grid;
    place-items: center;
    gap: .4rem;
    grid-template: 46px 46px 1fr / 1fr 1fr;
    padding: 1.1rem .9rem .8rem;
    box-shadow: 0 10px 28px -6px rgba(0, 0, 0, .55);
}

.mini-widget__circle {
    width: 46px;
    height: 46px;
    background: var(--color-surface);
    border-radius: 50%;
}

.mini-widget__bar {
    grid-column: span 2;
    height: 4px;
    width: 50%;
    background: var(--color-surface);
    border-radius: 4px;
    align-self: end;
    margin: 0 auto 4px;
}

@media (max-width: 1080px) {
    .mini-widget {
        display: none;
    }

    .phone-mockup {
        --device-width: 260px;
    }
}

@media (max-width: 880px) {
    .site-header .container {
        min-height: var(--header-height-mobile);
    }

    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: absolute;
        inset: 0 0 auto;
        top: 64px;
        width: 100%;
    }

    body {
        padding-top: var(--header-height-mobile);
    }

    .nav-list {
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        width: min(400px, 100%);
        background: var(--color-surface-soft);
        padding: 1rem 1.25rem 1.8rem;
        border-bottom-left-radius: 26px;
        border-left: 1px solid rgba(255, 255, 255, .06);
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        transform: translateY(-8px) scale(.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity .45s var(--ease), transform .45s var(--ease);
    }

    .primary-nav[aria-expanded="true"] .nav-list {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 1.05rem .4rem;
        font-size: 1rem;
    }

    .header-cta {
        margin-left: 0;
    }

    .hero {
        padding-top: clamp(2rem, 12vw, 5.5rem);
    }

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

    .hero__visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .mini-widget {
        display: none;
    }

    .hero__qr {
        margin-top: 2rem;
    }

    .qr-badge {
        width: 110px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Home search embed */
/* Centered hero search redesign */
.hero--center {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 2.5rem 0 3.25rem;
    position: relative;
}

@media (max-width:880px) {
    .hero--center {
        padding-top: 2.2rem;
    }
}

.hero__search-block {
    z-index: 1;
    position: relative;
}

/* Make search area remain visible below sticky header when user scrolls just past fold */
.hero__search-block.is-sticky {
    position: sticky;
    top: calc(var(--header-height) + 0.75rem);
}

@media (max-width:880px) {
    .hero__search-block.is-sticky {
        top: calc(var(--header-height-mobile) + 0.75rem);
    }
}

.hero__content--center {
    text-align: center;
    margin-inline: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__title--center {
    margin-bottom: 1.2rem;
}

.hero__subtitle--center {
    margin: -.25rem auto 2.2rem;
    max-width: 760px;
}

.hero__search-block {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

/* Restored original home search bar look (renamed back to .home-search-bar) */
.home-search-bar {
    background: var(--color-surface-soft);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 48px;
    padding: .65rem .9rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    box-shadow: 0 8px 28px -10px rgba(0, 0, 0, .55), 0 2px 8px -3px rgba(0, 0, 0, .4);
}

.home-search-bar {
    width: 640px;
    max-width: 90vw;
    height: 64px;
}

.home-search-bar input {
    height: 100%;
}

@media (max-width:700px) {
    .home-search-bar {
        height: 58px;
        width: 100%;
    }
}

.home-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.05rem;
    padding: .85rem .35rem;
    outline: none;
    font-weight: 500;
}

.home-search-bar input::placeholder {
    color: rgba(255, 255, 255, .35);
    font-weight: 400;
}

.store-badges {
    display: flex;
    gap: .9rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.store-badge {
    display: inline-flex;
    line-height: 0;
}

.store-badge img {
    display: block;
    height: 46px;
    width: auto;
}

@media (max-width:520px) {
    .store-badge img {
        height: 40px;
    }
}

ul.home-results {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease), padding-top .35s var(--ease);
}

ul.home-results.active {
    padding-top: 1.1rem;
    max-height: 1100px;
}

ul.home-results.collapsed {
    max-height: 0 !important;
    padding-top: 0 !important;
}

ul.home-results li {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeSlide .55s var(--ease) forwards;
}

ul.home-results li .card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    background: linear-gradient(145deg, #273039 0%, #21282f 60%);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 22px;
    padding: 1rem .95rem 1rem;
    height: 100%;
    box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .55);
}

ul.home-results li .card h3 {
    margin: 0;
    font-size: .95rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: .2px;
}

ul.home-results li .card .meta {
    font-size: .6rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .65;
}

ul.home-results li .card .happening {
    font-size: .63rem;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--color-accent-alt);
    margin-top: .2rem;
    min-height: 1.1rem;
}

ul.home-results li .card .mini-bars {
    margin-top: .15rem;
    width: 100%;
}

ul.home-results li .card footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: .45rem;
    align-items: center;
}

ul.home-results li .card button {
    white-space: nowrap;
}

ul.home-results li.trial-cta .card {
    background: linear-gradient(135deg, #ff8a05 0%, #ffb347 55%, #ffcf80 100%);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, .08);
}

ul.home-results li.trial-cta .card h3,
ul.home-results li.trial-cta .card .meta {
    color: #1a1a1a;
}

ul.home-results li.trial-cta .card button {
    --btn-bg: #1a1a1a;
    color: #fff;
}

/* Metrics card variations */
.metrics-card {
    background: linear-gradient(160deg, #262e35, #1e242a) !important;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem .9rem;
    margin: .65rem 0 .9rem;
}

.metrics-grid .m {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: .5rem .55rem .55rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    min-height: 64px;
    position: relative;
}

.metrics-grid .m label {
    font-size: .55rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .6;
}

.metrics-grid .m .num,
.metrics-grid .m span {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .3px;
}

.blurred-num {
    filter: blur(6px);
    display: inline-block;
    min-width: 24px;
}

.badge-trending {
    display: inline-block;
    background: linear-gradient(90deg, #ff8a05, #ffb347);
    color: #111;
    font-size: .55rem;
    letter-spacing: .5px;
    padding: .25rem .45rem;
    border-radius: 999px;
    position: absolute;
    top: 10px;
    right: 12px;
    margin: 0;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .5);
}

ul.home-results li .card .card-head {
    position: relative;
    padding-right: 60px;
}

ul.home-results li .card .meta--below {
    margin-top: .6rem;
    font-size: .6rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .55;
}

.card-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.view-data {
    --btn-bg: var(--color-accent);
    color: #111;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6vh 1rem 4vh;
    z-index: 200;
}

.modal__dialog {
    width: min(880px, 100%);
    background: linear-gradient(135deg, #262e30, #1f262b);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 32px;
    padding: 2.5rem 2.4rem 2.8rem;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6), 0 6px 18px -6px rgba(0, 0, 0, .5);
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: grid;
    place-items: center;
}

.modal__title {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    letter-spacing: -.5px;
}

.modal__lead {
    margin: .2rem 0 1.5rem;
    font-size: .95rem;
    color: var(--color-text-dim);
}

.plans {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 0 0 1.6rem;
}

.plan {
    background: #2a3239;
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 1.35rem 1.2rem 1.6rem;
    border-radius: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan--pro {
    background: linear-gradient(150deg, #303b44, #263038);
    border-color: rgba(255, 255, 255, .12);
}

.plan h4 {
    margin: .15rem 0 .55rem;
    font-size: 1rem;
    letter-spacing: .3px;
}

.plan .price {
    margin: 0 0 .85rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.5px;
}

.plan .price span {
    font-size: .8rem;
    font-weight: 500;
    opacity: .6;
}

.plan .feat {
    list-style: none;
    margin: 0 0 1.1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .72rem;
    letter-spacing: .4px;
}

.plan .feat li.dim {
    opacity: .45;
}

.fine {
    font-size: .62rem;
    opacity: .55;
    letter-spacing: .4px;
}

body.modal-open {
    overflow: hidden;
}

ul.home-results li:nth-child(1) {
    animation-delay: .05s;
}

ul.home-results li:nth-child(2) {
    animation-delay: .1s;
}

ul.home-results li:nth-child(3) {
    animation-delay: .15s;
}

ul.home-results li:nth-child(4) {
    animation-delay: .2s;
}

ul.home-results li:nth-child(5) {
    animation-delay: .25s;
}

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skeleton loading placeholders */
.skeleton-holder li {
    animation: none;
    opacity: 1;
    transform: none;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #2a3138 0%, #313a42 40%, #2a3138 80%);
    background-size: 200% 100%;
    animation: shimmer 1.4s linear infinite;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 1rem 1.1rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    min-height: 92px;
}

.skeleton-line {
    height: 10px;
    width: 100%;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-metrics {
    display: flex;
    gap: 1rem;
    margin-top: .2rem;
}

.skeleton-pill {
    height: 26px;
    width: 64px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
}

@keyframes shimmer {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200% 0;
    }
}

ul.home-results li.spot-row.rich {
    align-items: flex-start;
}

ul.home-results li.spot-row .happening {
    font-size: .7rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--color-accent-alt);
    margin-top: .4rem;
}

/* Rich spot row metrics */
.spot-row.rich {
    flex-direction: column;
    align-items: stretch;
}

/* New Marketing Sections */
.section {
    padding: 5.5rem 0 5.25rem;
    position: relative;
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, #121a21 0%, #10171d 100%);
}

.section__head {
    text-align: center;
    margin: 0 auto 3.2rem;
    max-width: 760px;
}

.section__title {
    font-size: 2.35rem;
    line-height: 1.05;
    margin: 0 0 .75rem;
    letter-spacing: -.5px;
    font-weight: 700;
}

.section__subtitle {
    margin: 0;
    font-size: 1.05rem;
    opacity: .72;
    font-weight: 500;
}

.gradient-text {
    background: linear-gradient(90deg, #72f5ff, #a881ff 40%, #ffb347 75%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* How It Works */
.hiw-steps {
    counter-reset: step;
    display: grid;
    gap: 2.1rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
}

.hiw-step {
    background: #182128;
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 1.4rem 1.1rem 1.55rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .4);
    position: relative;
}

.hiw-step h3 {
    margin: .15rem 0 .55rem;
    font-size: 1.02rem;
    letter-spacing: .25px;
}

.hiw-step p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.35;
    opacity: .84;
}

/* Features Grid */
.feature-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
    background: linear-gradient(145deg, #202a32, #1a2229);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 1.6rem 1.2rem 1.55rem;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 210px;
}

.feature-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 15%, rgba(255, 255, 255, .12), transparent 60%);
    opacity: .6;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.feature-card h3 {
    margin: 0 0 .65rem;
    font-size: 1rem;
    letter-spacing: .3px;
}

.feature-card p {
    margin: 0;
    font-size: .78rem;
    line-height: 1.4;
    opacity: .85;
}

/* Safety */
.section--safety {
    background: linear-gradient(180deg, #121a21 0%, #10171d 100%);
}

.safety-grid {
    display: grid;
    gap: 1.4rem 1.55rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 1rem;
}

.safety-item {
    background: #182128;
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 1.25rem 1rem 1.3rem;
    border-radius: 18px;
    position: relative;
}

.safety-item h3 {
    margin: .1rem 0 .5rem;
    font-size: .9rem;
    letter-spacing: .25px;
}

.safety-item p {
    margin: 0;
    font-size: .72rem;
    line-height: 1.35;
    opacity: .82;
}

/* Utilities */
.container.narrow {
    max-width: 980px;
}

@media (max-width:880px) {
    .section {
        padding: 4.2rem 0 4rem;
    }

    .section__title {
        font-size: 2rem;
    }
}

.spot-row.rich .metrics {
    display: flex;
    gap: 1.4rem;
    margin-top: .6rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.spot-row.rich .metrics>div {
    font-size: .7rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--color-text-dim);
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.spot-row.rich .metrics>div label {
    font-size: .65rem;
    opacity: .7;
}

.blur-num {
    filter: blur(6px);
    display: inline-block;
    min-width: 38px;
    text-align: left;
}

.mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 38px;
    padding: 4px 6px;
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
}

.mini-bars span {
    display: block;
    width: 5px;
    background: linear-gradient(var(--color-gradient-from), var(--color-gradient-to));
    border-radius: 4px;
}

.trial-banner {
    margin: .8rem 0 0;
    padding: .65rem .85rem;
    background: linear-gradient(90deg, #313a44, #2a323a);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    font-size: .7rem;
    letter-spacing: .4px;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.inline-upgrade {
    font-size: .65rem !important;
}

@media (max-width:640px) {
    .home-search-wrapper {
        top: 72px;
        padding: .85rem .85rem 1.05rem;
        border-radius: 26px;
    }

    .spot-row.rich .metrics {
        gap: .9rem;
    }

    .mini-bars {
        height: 32px;
    }
}

/* Accessibility tweak for high contrast */
@media (prefers-contrast: more) {
    .btn--gradient {
        outline: 2px solid #000;
    }
}

/* ================= Business Portal Lazy Activation ================= */
/* Hide marketing surfaces once portal is active */
body.portal-active main,
body.portal-active .section,
body.portal-active .site-footer-basic {
    display: none !important;
}

body.portal-active #root {
    display: block;
    min-height: 100vh;
}

/* Provide a simple fade-in for portal root optionally */
body.portal-active #root {
    animation: portalFade .4s ease;
}

@keyframes portalFade {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer layout */
.footer-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2.5rem 0 3rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: .85rem;
}

.footer-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    position: relative;
}

.footer-links a:hover {
    color: var(--color-text);
}

@media (max-width:640px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

.opaque-bg {
    background: rgba(34, 24, 10, 0.62);
    /* deep brown, 62% opacity for warmth */
}

.lang-switch {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.lang-switch button {
    background: #FFD600;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-weight: bold;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 15px;
    transition: background 0.2s;
}

.lang-switch button:hover {
    background: #FFB347;
}

.status-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.mos-logo {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    align-self: flex-start;
    margin-bottom: 24px;
}

.main-text {
    color: #fff;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.05;
    text-align: left;
    width: 100%;
    margin-bottom: 32px;
}

.main-text .highlight {
    color: #FFD600;
}

.tabs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 18px;
}

.tab {
    color: #fff;
    font-size: 18px;
    opacity: 0.7;
    padding: 4px 12px;
    border-radius: 12px;
    cursor: pointer;
}

.tab.active {
    background: #FFB347;
    color: #1a1a1a;
    opacity: 1;
    font-weight: bold;
}

.spot-card {
    background: #FFB347;
    border-radius: 16px;
    padding: 16px 20px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.spot-title {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
}

.avatars {
    display: flex;
    gap: 4px;
}

.avatar {
    width: 28px;
    height: 28px;
    background: #c97b4d;
    border-radius: 50%;
    border: 2px solid #fff;
}

.going {
    color: #1a1a1a;
    font-size: 16px;
    margin-left: 8px;
}

.get-app {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
}

.get-app span {
    color: #FFD600;
    font-weight: bold;
    font-size: 18px;
}

.qr {
    width: 64px;
    height: 64px;
    background: #FFD600;
    border-radius: 12px;
    margin-left: 16px;
    background-image: url('https://api.qrserver.com/v1/create-qr-code/?size=64x64&data=https://your-app-link.com');
    background-size: cover;
}

.silhouettes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 40vh;
    background: url('https://i.imgur.com/1Q9Z1Zm.png');
    /* Placeholder silhouette image */
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.8;
}