:root {
    color-scheme: dark;
    --lh-bg: #050505;
    --lh-panel: #0d0c0a;
    --lh-panel-strong: #12100c;
    --lh-gold: #d5a735;
    --lh-gold-light: #f4d37b;
    --lh-gold-deep: #8f6717;
    --lh-cream: #f4e7c9;
    --lh-ink: #19130a;
    --lh-text: #fff8e8;
    --lh-muted: #cdbf9e;
    --lh-line: rgba(229, 186, 77, 0.34);
    --lh-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

[x-cloak] {
    display: none !important;
}

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

html {
    overflow-x: hidden;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    overflow-x: clip;
    background:
        radial-gradient(circle at 50% 0, rgba(156, 108, 20, 0.08), transparent 28rem),
        var(--lh-bg);
    color: var(--lh-text);
    font-family: "Noto Sans Khmer", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--lh-gold-light);
    outline-offset: 3px;
}

.lh-container {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}

.lh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding-top: env(safe-area-inset-top, 0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lh-nav {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.lh-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.lh-logo img {
    width: 42px;
    height: 46px;
    object-fit: contain;
}

.lh-logo-copy {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    color: var(--lh-gold-light);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

.lh-logo-copy strong {
    font-size: 1.02rem;
    letter-spacing: 0.14em;
}

.lh-logo-copy small {
    margin-top: 5px;
    color: #f5ead0;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.32em;
}

.lh-links {
    display: flex;
    min-width: 0;
    align-items: stretch;
    align-self: stretch;
    justify-content: center;
    gap: clamp(14px, 1.6vw, 26px);
}

.lh-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #eee2c7;
    font-size: 0.91rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease;
}

.lh-links a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--lh-gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.lh-links a:hover,
.lh-links a.is-active {
    color: var(--lh-gold-light);
}

.lh-links a:hover::after,
.lh-links a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.lh-nav-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 13px;
}

.lh-language {
    display: inline-flex;
    align-items: center;
    color: #eee2c7;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.lh-btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 19px;
    border: 1px solid var(--lh-gold);
    border-radius: 10px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(213, 167, 53, 0.2);
}

.lh-btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, #f1cd6d, #c88d20);
    color: #100d07;
}

.lh-btn-outline {
    background: rgba(0, 0, 0, 0.22);
    color: var(--lh-gold-light);
}

.lh-menu-button,
.lh-mobile-menu {
    display: none;
}

.lh-hero {
    padding: 0;
}

.lh-hero > .lh-container {
    width: min(1600px, 100%);
}

.lh-hero-card {
    position: relative;
    min-height: clamp(390px, 32vw, 460px);
    overflow: hidden;
    isolation: isolate;
    border: 0;
    border-radius: 0;
    background-color: #100d08;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.04) 72%),
        url("/static/images/legacy-home/hero-landing.jpg");
    background-position: center, 65% 44%;
    background-repeat: no-repeat;
    background-size: 100% 100%, auto 125%;
    box-shadow: var(--lh-shadow);
}

.lh-hero-content {
    position: relative;
    z-index: 2;
    width: min(58%, 710px);
    padding: clamp(36px, 4vw, 58px) 20px clamp(36px, 4vw, 58px) clamp(48px, 5vw, 76px);
}

.lh-kicker {
    display: none;
    color: var(--lh-gold-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lh-hero h1 {
    max-width: 640px;
    margin: 0 0 14px;
    color: var(--lh-gold-light);
    font-size: clamp(2.45rem, 4.2vw, 4.1rem);
    font-weight: 800;
    line-height: 1.32;
    letter-spacing: -0.025em;
}

.lh-hero h1 span {
    display: block;
    white-space: nowrap;
}

.lh-hero-brand {
    position: absolute;
    z-index: 2;
    top: 38px;
    right: clamp(42px, 6vw, 86px);
    display: flex;
    width: 128px;
    flex-direction: column;
    align-items: center;
    color: var(--lh-gold-light);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1;
    pointer-events: none;
    text-align: center;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);
}

.lh-hero-brand img {
    width: 78px;
    height: 80px;
    object-fit: contain;
}

.lh-hero-brand strong {
    margin-top: 5px;
    font-size: 1.18rem;
    letter-spacing: 0.13em;
}

.lh-hero-brand small {
    margin-top: 7px;
    color: #f6ead0;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.32em;
}

.lh-hero p {
    max-width: 440px;
    margin: 0;
    color: #f2e9d8;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    line-height: 1.72;
}

.lh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 18px;
}

.lh-hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.lh-hero-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.lh-hero-dots span.is-active {
    width: 23px;
    border-radius: 99px;
    background: var(--lh-gold);
}

.lh-benefits {
    position: relative;
    z-index: 3;
    padding: 0;
}

.lh-benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--lh-line);
    border-radius: 17px;
    background: linear-gradient(180deg, #12110e, #0a0a09);
}

.lh-benefit {
    display: flex;
    min-width: 0;
    min-height: 132px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    text-align: center;
}

.lh-benefit + .lh-benefit {
    border-left: 1px solid rgba(229, 186, 77, 0.2);
}

.lh-benefit > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 8px;
    color: var(--lh-gold-light);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.lh-benefit > span svg {
    display: block;
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.lh-benefit strong,
.lh-benefit small {
    display: block;
}

.lh-benefit strong {
    color: #f9e7b8;
    font-size: 0.92rem;
}

.lh-benefit small {
    margin-top: 2px;
    color: var(--lh-muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.lh-section {
    padding: clamp(44px, 5vw, 68px) 0;
}

.lh-market-section {
    padding-top: 8px;
}

.lh-market-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(330px, 0.92fr);
    gap: 13px;
}

.lh-market-panel,
.lh-reward-panel {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--lh-line);
    border-radius: 17px;
    background: linear-gradient(180deg, #11100d, #090908);
}

.lh-compact-head {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(229, 186, 77, 0.2);
}

.lh-compact-head > div {
    min-width: 0;
}

.lh-compact-head span {
    color: var(--lh-gold-light);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.lh-compact-head h2 {
    margin: 2px 0 0;
    color: #fff0c7;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    line-height: 1.4;
}

.lh-compact-head > a {
    flex: 0 0 auto;
    color: var(--lh-gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.lh-loading,
.lh-empty {
    display: grid;
    min-height: 190px;
    place-items: center;
    padding: 24px;
    color: var(--lh-muted);
    text-align: center;
}

.lh-empty a {
    color: var(--lh-gold-light);
    font-weight: 800;
}

.lh-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(229, 186, 77, 0.16);
}

.lh-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: #0d0c0a;
    color: var(--lh-text);
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.lh-product-card:hover {
    z-index: 2;
    background: #17140d;
    transform: translateY(-3px);
}

.lh-product-more > img {
    background: #070707;
    object-fit: cover;
}

.lh-product-badge {
    position: absolute;
    z-index: 2;
    top: 9px;
    left: 9px;
    max-width: calc(100% - 18px);
    padding: 4px 7px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f0cf7b, #c98d24);
    color: #211503;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1.35;
}

.lh-product-card > img {
    width: 100%;
    aspect-ratio: 1 / 0.82;
    background: #e9dbc1;
    object-fit: contain;
}

.lh-product-card > div {
    min-width: 0;
    padding: 13px 13px 15px;
}

.lh-product-card small {
    display: block;
    overflow: hidden;
    color: var(--lh-muted);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-product-card h3 {
    display: -webkit-box;
    min-height: 2.9em;
    overflow: hidden;
    margin: 5px 0 8px;
    font-size: 0.86rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.lh-product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.lh-product-price strong {
    color: var(--lh-gold-light);
    font-size: 1rem;
}

.lh-product-price span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid var(--lh-line);
    border-radius: 7px;
    font-size: 0.75rem;
}

.lh-campaigns {
    min-height: 100%;
}

.lh-campaign-card {
    position: relative;
    display: grid;
    min-height: 314px;
    overflow: hidden;
    color: #fff6dc;
    text-decoration: none;
}

.lh-campaign-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 32%, rgba(0, 0, 0, 0.9) 100%);
    content: "";
}

.lh-campaign-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #17130d;
    object-fit: cover;
    transition: transform 350ms ease;
}

.lh-campaign-card:hover > img {
    transform: scale(1.035);
}

.lh-campaign-card > div {
    position: relative;
    z-index: 2;
    align-self: end;
    min-width: 0;
    padding: 26px 22px 21px;
}

.lh-campaign-card span {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 99px;
    background: var(--lh-gold);
    color: #1a1103;
    font-size: 0.63rem;
    font-weight: 800;
}

.lh-campaign-card h3 {
    margin: 7px 0 4px;
    color: var(--lh-gold-light);
    font-size: 1.28rem;
    line-height: 1.45;
}

.lh-campaign-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 9px;
    color: #ede1c8;
    font-size: 0.76rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.lh-campaign-card b {
    color: var(--lh-gold-light);
    font-size: 0.75rem;
}

.lh-about-section {
    padding-top: 0;
}

.lh-about-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    overflow: hidden;
    border-radius: 18px;
    background: var(--lh-cream);
    color: var(--lh-ink);
}

.lh-about-copy {
    min-width: 0;
    padding: clamp(30px, 4vw, 52px);
}

.lh-about-copy .lh-kicker {
    color: #8d6415;
}

.lh-title {
    margin: 7px 0 0;
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    line-height: 1.45;
    text-wrap: balance;
}

.lh-reasons {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.lh-reasons > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 13px;
    border: 1px solid rgba(93, 63, 12, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.34);
}

.lh-reasons > div > span {
    display: grid;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    place-items: center;
    border-radius: 50%;
    background: #c99b39;
    color: #fff8e8;
}

.lh-reasons p,
.lh-reasons strong,
.lh-reasons small {
    display: block;
    margin: 0;
}

.lh-reasons small {
    margin-top: 2px;
    color: #695a40;
}

.lh-stories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: 14px;
}

.lh-stories a {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 9px;
    background: #211708;
    color: #fff4d2;
    text-decoration: none;
}

.lh-stories img {
    width: 100%;
    height: 82px;
    object-fit: cover;
}

.lh-stories span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    padding: 14px 7px 6px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lh-quote-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.72fr);
    align-items: end;
    min-width: 0;
    overflow: hidden;
    padding: 28px 24px 0 36px;
    background: linear-gradient(135deg, #fff8e9, #e6ca8e);
}

.lh-quote-card > div {
    align-self: center;
    min-width: 0;
    padding-bottom: 28px;
}

.lh-quote-mark {
    display: block;
    height: 44px;
    color: #a27620;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.lh-quote-card blockquote {
    margin: 8px 0 18px;
    font-size: clamp(1.12rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.65;
}

.lh-quote-card p,
.lh-quote-card p strong,
.lh-quote-card p small {
    display: block;
    margin: 0;
}

.lh-quote-card p small {
    color: #65543a;
    font-size: 0.7rem;
}

.lh-quote-card button {
    margin-top: 15px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #795313;
    font-size: 0.8rem;
    font-weight: 800;
}

.lh-quote-card img {
    width: 100%;
    height: 100%;
    max-height: 410px;
    object-fit: contain;
    object-position: bottom center;
    mix-blend-mode: multiply;
}

.lh-how-section {
    padding-top: 4px;
}

.lh-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 25px;
}

.lh-centered-head {
    justify-content: center;
    text-align: center;
}

.lh-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--lh-line);
    border-radius: 16px;
    margin: 0;
    background: linear-gradient(180deg, #15120d, #0b0a08);
    list-style: none;
}

.lh-steps li {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 140px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    text-align: center;
}

.lh-steps li + li {
    border-left: 1px solid rgba(229, 186, 77, 0.18);
}

.lh-steps li + li::before {
    position: absolute;
    top: 50%;
    left: -8px;
    z-index: 2;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    background: #0e0c09;
    color: var(--lh-gold);
    content: "›";
    transform: translateY(-50%);
}

.lh-steps li > span {
    position: relative;
    display: grid;
    width: 41px;
    height: 41px;
    place-items: center;
    margin-bottom: 9px;
    border: 1px solid var(--lh-gold);
    border-radius: 50%;
    color: var(--lh-gold-light);
    font-weight: 800;
}

.lh-steps li > span svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.lh-steps li > span em {
    position: absolute;
    top: -7px;
    right: -6px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: inherit;
    font-size: 0.52rem;
    font-style: normal;
}

.lh-steps b,
.lh-steps small {
    display: block;
}

.lh-steps b {
    color: #f8e5b2;
    font-size: 0.85rem;
}

.lh-steps small {
    margin-top: 3px;
    color: var(--lh-muted);
    font-size: 0.67rem;
    line-height: 1.5;
}

.lh-download-section {
    padding-top: 0;
}

.lh-download-card {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(22px, 4vw, 48px);
    overflow: hidden;
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid var(--lh-line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 88% 30%, rgba(213, 167, 53, 0.19), transparent 27%),
        linear-gradient(135deg, #13110d, #070707);
}

.lh-app-image {
    width: 112px;
    height: 112px;
    border-radius: 18px;
    object-fit: cover;
}

.lh-download-copy {
    min-width: 0;
}

.lh-download-copy h2 {
    margin: 5px 0 8px;
    color: var(--lh-gold-light);
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
    line-height: 1.4;
}

.lh-download-copy p {
    max-width: 650px;
    margin: 0;
    color: var(--lh-muted);
    font-size: 0.86rem;
}

.lh-app-qr {
    display: flex;
    width: 88px;
    flex: 0 0 88px;
    flex-direction: column;
    align-items: center;
    color: var(--lh-muted);
    font-size: 0.58rem;
    text-decoration: none;
}

.lh-app-qr img {
    width: 78px;
    height: 78px;
    padding: 4px;
    border-radius: 5px;
    background: #ffffff;
}

.lh-app-qr small {
    margin-top: 4px;
}

.lh-store-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lh-store-buttons a {
    display: flex;
    min-width: 154px;
    min-height: 54px;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 9px;
    background: #050505;
    color: #ffffff;
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.lh-store-buttons a:hover {
    border-color: var(--lh-gold-light);
    transform: translateY(-2px);
}

.lh-store-buttons a > span {
    font-size: 1.35rem;
}

.lh-store-buttons b,
.lh-store-buttons small {
    display: block;
    line-height: 1.15;
}

.lh-store-buttons small {
    margin-bottom: 3px;
    font-size: 0.54rem;
    font-weight: 500;
}

.lh-footer {
    padding: 48px 0 calc(22px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030303;
}

.lh-footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(150px, 1fr));
    gap: clamp(24px, 4vw, 48px);
}

.lh-footer-grid > div {
    min-width: 0;
}

.lh-footer-logo {
    width: 155px;
    height: 82px;
    object-fit: contain;
}

.lh-footer h3 {
    margin: 0 0 13px;
    color: var(--lh-gold-light);
    font-size: 0.95rem;
}

.lh-footer a {
    display: block;
    margin: 7px 0;
    color: var(--lh-muted);
    text-decoration: none;
}

.lh-footer a:hover {
    color: var(--lh-gold-light);
}

.lh-footer p {
    margin: 8px 0 0;
    overflow-wrap: anywhere;
    color: var(--lh-muted);
    font-size: 0.78rem;
}

.lh-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 34px;
    color: #887e69;
    font-size: 0.72rem;
}

.lh-muted {
    color: var(--lh-muted);
}

.lh-modal-backdrop {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:
        max(16px, env(safe-area-inset-top, 0px))
        max(16px, env(safe-area-inset-right, 0px))
        max(16px, env(safe-area-inset-bottom, 0px))
        max(16px, env(safe-area-inset-left, 0px));
    background: rgba(0, 0, 0, 0.8);
    overscroll-behavior: contain;
}

.lh-modal {
    position: relative;
    width: min(820px, 100%);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 22px;
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    -webkit-overflow-scrolling: touch;
}

.lh-modal-photo {
    width: 110px;
    height: 110px;
    flex: 0 0 auto;
    border: 4px solid #ffffff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px #b38327, 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lh-modal .lh-kicker,
.lh-modal .lh-tag {
    color: #8b5f0d;
}

.lh-modal h2 {
    margin: 12px 0 18px;
    color: #1f2937;
    font-weight: 800;
    line-height: 1.45;
}

.lh-modal p,
.lh-modal li {
    color: #404040;
    font-size: 1rem;
    line-height: 1.9;
}

.lh-modal p strong {
    color: #111827;
}

.lh-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #222222;
    font-size: 34px;
    line-height: 1;
}

.lh-message-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 36px;
    margin-bottom: 25px;
}

.lh-message-header > div {
    min-width: 0;
}

.lh-message-header .lh-tag {
    display: inline-flex;
    padding: 6px 11px;
    border: 1px solid #ead7a1;
    border-radius: 99px;
    background: #fff7df;
    font-size: 0.8rem;
}

.lh-message-list {
    padding-left: 24px;
    margin: 18px 0 24px;
}

.lh-message-signoff {
    padding-top: 18px;
    border-top: 1px solid #e5e5e5;
}

@media (max-width: 1100px) {
    .lh-hero-brand {
        display: none;
    }

    .lh-links {
        gap: 14px;
    }

    .lh-links a {
        font-size: 0.78rem;
    }

    .lh-language {
        display: none;
    }

    .lh-market-grid {
        grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.82fr);
    }

    .lh-download-card {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .lh-app-image {
        width: 96px;
        height: 96px;
    }

    .lh-store-buttons {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 1100px) {
    .lh-links,
    .lh-language {
        display: none;
    }

    .lh-menu-button {
        display: inline-flex;
        width: 46px;
        height: 44px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid var(--lh-line);
        border-radius: 10px;
        background: #11100d;
    }

    .lh-menu-button span {
        width: 19px;
        height: 2px;
        border-radius: 2px;
        background: var(--lh-gold-light);
    }

    .lh-mobile-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 1px max(20px, env(safe-area-inset-right, 0px)) 18px max(20px, env(safe-area-inset-left, 0px));
        background: rgba(3, 3, 3, 0.98);
    }

    .lh-mobile-menu a {
        padding: 13px 14px;
        border-bottom: 1px solid rgba(229, 186, 77, 0.16);
        color: #f5e5bd;
        font-size: 0.87rem;
        font-weight: 700;
        text-decoration: none;
    }

    .lh-hero {
        padding: 14px 0 8px;
    }

    .lh-hero > .lh-container {
        width: min(1320px, calc(100% - 40px));
    }

    .lh-hero-card {
        min-height: 530px;
        border: 1px solid var(--lh-line);
        border-radius: 22px;
    }

    .lh-hero-content {
        width: 68%;
        padding-inline: 32px;
    }

    .lh-hero h1 {
        font-size: clamp(2.25rem, 5vw, 2.85rem);
    }

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

    .lh-benefit:nth-child(4) {
        border-left: 0;
    }

    .lh-benefit:nth-child(n + 4) {
        border-top: 1px solid rgba(229, 186, 77, 0.2);
    }

    .lh-market-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lh-campaign-card {
        min-height: 390px;
    }

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

    .lh-quote-card {
        min-height: 380px;
    }

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

    .lh-steps li:nth-child(4) {
        border-left: 0;
    }

    .lh-steps li:nth-child(n + 4) {
        border-top: 1px solid rgba(229, 186, 77, 0.18);
    }

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

    .lh-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 72px;
    }

    .lh-container {
        width: min(100% - 24px, 1240px);
    }

    .lh-nav {
        min-height: 68px;
    }

    .lh-logo img {
        width: 34px;
        height: 38px;
    }

    .lh-logo-copy {
        margin-left: 8px;
    }

    .lh-logo-copy strong {
        font-size: 0.88rem;
    }

    .lh-logo-copy small {
        font-size: 0.46rem;
    }

    .lh-hero {
        padding-top: 12px;
    }

    .lh-hero > .lh-container {
        width: min(1320px, calc(100% - 24px));
    }

    .lh-hero-card {
        display: flex;
        min-height: 660px;
        align-items: flex-end;
        border-radius: 17px;
        background-image:
            linear-gradient(180deg, rgba(0, 0, 0, 0.05) 24%, rgba(0, 0, 0, 0.74) 58%, rgba(0, 0, 0, 0.96) 100%),
            url("/static/images/legacy-home/hero-landing.jpg");
        background-position: 71% center;
        background-size: auto 100%;
    }

    .lh-hero-content {
        width: 100%;
        padding: 300px 24px 48px;
    }

    .lh-kicker {
        display: inline-block;
    }

    .lh-hero h1 {
        font-size: clamp(2.05rem, 9.5vw, 3rem);
        line-height: 1.34;
    }

    .lh-hero h1 span {
        white-space: normal;
        text-wrap: balance;
    }

    .lh-hero p {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .lh-hero-dots {
        bottom: 14px;
    }

    .lh-benefit-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .lh-benefit-grid::-webkit-scrollbar {
        display: none;
    }

    .lh-benefit {
        min-width: 42%;
        scroll-snap-align: start;
    }

    .lh-benefit + .lh-benefit,
    .lh-benefit:nth-child(4) {
        border-top: 0;
        border-left: 1px solid rgba(229, 186, 77, 0.2);
    }

    .lh-section {
        padding-block: 38px;
    }

    .lh-market-section {
        padding-top: 18px;
    }

    .lh-products {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .lh-products::-webkit-scrollbar {
        display: none;
    }

    .lh-product-card {
        min-width: 48%;
        scroll-snap-align: start;
    }

    .lh-campaign-card {
        min-height: 350px;
    }

    .lh-quote-card {
        grid-template-columns: minmax(0, 1.1fr) minmax(130px, 0.7fr);
        min-height: 340px;
        padding-left: 24px;
    }

    .lh-download-card {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 18px;
    }

    .lh-app-image {
        width: 78px;
        height: 78px;
        border-radius: 14px;
    }

    .lh-store-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .lh-store-buttons a {
        min-width: 0;
    }

    .lh-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .lh-mobile-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-app-nav {
        min-height: 40px;
        padding: 8px 11px;
        font-size: 0.7rem;
    }

    .lh-hero-card {
        min-height: 630px;
    }

    .lh-hero-content {
        padding-inline: 20px;
    }

    .lh-actions > .lh-btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .lh-benefit {
        min-width: 52%;
    }

    .lh-compact-head {
        padding-inline: 14px;
    }

    .lh-compact-head h2 {
        font-size: 1.05rem;
    }

    .lh-product-card {
        min-width: 62%;
    }

    .lh-product-card > img {
        aspect-ratio: 1 / 0.9;
    }

    .lh-campaign-card {
        min-height: 315px;
    }

    .lh-about-copy {
        padding: 27px 20px;
    }

    .lh-quote-card {
        grid-template-columns: minmax(0, 1fr);
        padding: 26px 22px 0;
    }

    .lh-quote-card > div {
        padding-bottom: 10px;
    }

    .lh-quote-card img {
        width: min(72%, 260px);
        max-height: 260px;
        justify-self: center;
    }

    .lh-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-steps li:nth-child(3),
    .lh-steps li:nth-child(5) {
        border-left: 0;
    }

    .lh-steps li:nth-child(n + 3) {
        border-top: 1px solid rgba(229, 186, 77, 0.18);
    }

    .lh-steps li:nth-child(4) {
        border-left: 1px solid rgba(229, 186, 77, 0.18);
    }

    .lh-steps li:nth-child(4)::before {
        display: grid;
    }

    .lh-steps li:nth-child(3)::before,
    .lh-steps li:nth-child(5)::before {
        display: none;
    }

    .lh-download-card {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .lh-app-image {
        width: 92px;
        height: 92px;
        justify-self: center;
    }

    .lh-store-buttons {
        grid-template-columns: minmax(0, 1fr);
    }

    .lh-store-buttons a {
        justify-content: center;
    }

    .lh-footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .lh-footer-brand {
        grid-column: auto;
    }

    .lh-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .lh-message-header {
        display: block;
        padding-right: 30px;
    }

    .lh-modal-photo {
        width: 88px;
        height: 88px;
        margin-bottom: 18px;
    }
}

@media (max-width: 380px) {
    body {
        font-size: 15px;
    }

    .lh-container {
        width: min(100% - 20px, 1240px);
    }

    .lh-logo img {
        width: 31px;
        height: 35px;
    }

    .lh-logo-copy strong {
        font-size: 0.82rem;
    }

    .lh-logo-copy small {
        font-size: 0.42rem;
    }

    .lh-menu-button {
        width: 42px;
        height: 42px;
    }

    .lh-hero-card {
        min-height: 610px;
        background-position: 69% center;
    }

    .lh-hero-content {
        padding: 280px 17px 44px;
    }

    .lh-hero h1 {
        font-size: clamp(1.86rem, 9vw, 2.25rem);
    }

    .lh-btn {
        min-height: 44px;
        padding: 10px 14px;
    }

    .lh-benefit {
        min-width: 60%;
    }

    .lh-product-card {
        min-width: 68%;
    }

    .lh-campaign-card {
        min-height: 285px;
    }

    .lh-campaign-card > div {
        padding: 20px 17px;
    }

    .lh-reasons > div {
        align-items: flex-start;
    }

    .lh-steps li {
        min-height: 128px;
        padding-inline: 8px;
    }

    .lh-modal-backdrop {
        padding-inline: 10px;
    }

    .lh-modal {
        padding: 22px 18px;
        border-radius: 18px;
    }
}

@media (orientation: landscape) and (max-height: 500px) and (min-width: 640px) {
    .lh-hero-card {
        min-height: 430px;
        background-position: center;
        background-size: cover;
    }

    .lh-hero-content {
        width: 60%;
        padding: 45px 34px;
    }

    .lh-hero h1 {
        font-size: clamp(2rem, 6vw, 3.2rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@supports not (aspect-ratio: 1 / 1) {
    .lh-product-card > img {
        height: 190px;
    }

    .lh-campaign-card > img {
        height: 100%;
    }
}

/* Compact desktop composition mirrors the approved one-page design. */
@media (min-width: 901px) {
    .lh-hero-card {
        min-height: clamp(330px, 30.5vw, 410px);
    }

    .lh-hero-content {
        padding-top: clamp(28px, 3vw, 42px);
        padding-bottom: clamp(28px, 3vw, 42px);
    }

    .lh-benefit {
        min-height: 108px;
        padding-block: 10px;
    }

    .lh-benefit > span {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }

    .lh-benefit > span svg {
        width: 32px;
        height: 32px;
    }

    .lh-benefit strong {
        font-size: 0.82rem;
    }

    .lh-benefit small {
        font-size: 0.64rem;
    }

    .lh-market-section {
        padding: 7px 0 8px;
    }

    .lh-market-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(340px, 1fr);
        gap: 8px;
    }

    .lh-market-panel,
    .lh-reward-panel {
        border-radius: 12px;
    }

    .lh-compact-head {
        min-height: 44px;
        padding: 6px 12px;
    }

    .lh-compact-head span {
        font-size: 0.58rem;
    }

    .lh-compact-head h2 {
        margin-top: 0;
        font-size: 1rem;
        line-height: 1.25;
    }

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

    .lh-product-card > img {
        height: 126px;
        aspect-ratio: auto;
    }

    .lh-product-card > div {
        padding: 7px 9px 9px;
    }

    .lh-product-card h3 {
        min-height: 2.5em;
        margin: 2px 0 4px;
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .lh-product-card small {
        font-size: 0.58rem;
    }

    .lh-product-price strong {
        font-size: 0.82rem;
    }

    .lh-product-price span {
        width: 24px;
        height: 24px;
        font-size: 0.63rem;
    }

    .lh-product-badge {
        top: 6px;
        left: 6px;
        padding: 3px 5px;
        font-size: 0.5rem;
    }

    .lh-campaign-card {
        min-height: 205px;
    }

    .lh-campaign-card > div {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 10px;
    }

    .lh-campaign-card span,
    .lh-campaign-card h3,
    .lh-campaign-card p {
        display: none;
    }

    .lh-campaign-card b {
        min-width: 138px;
        padding: 6px 18px;
        border-radius: 6px;
        background: linear-gradient(135deg, #f0cf7b, #c98d24);
        color: #1a1103;
        font-size: 0.68rem;
        text-align: center;
    }

    .lh-about-section {
        padding: 0;
    }

    .lh-about-card {
        height: 260px;
        grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
        border-radius: 12px;
    }

    .lh-about-copy {
        padding: 14px 16px 12px;
    }

    .lh-about-copy .lh-kicker {
        display: inline-block;
        font-size: 0.6rem;
    }

    .lh-about-copy .lh-title {
        margin-top: 2px;
        font-size: 1.08rem;
        line-height: 1.25;
    }

    .lh-reasons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 9px;
    }

    .lh-reasons > div {
        min-width: 0;
        gap: 6px;
        padding: 7px;
        border-radius: 8px;
    }

    .lh-reasons > div > span {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        font-size: 0.7rem;
    }

    .lh-reasons strong {
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .lh-reasons small {
        display: -webkit-box;
        overflow: hidden;
        font-size: 0.56rem;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .lh-stories {
        gap: 5px;
        margin-top: 8px;
    }

    .lh-stories img {
        height: 78px;
    }

    .lh-quote-card {
        grid-template-columns: minmax(0, 1fr) 122px;
        padding: 15px 10px 0 18px;
    }

    .lh-quote-card > div {
        padding-bottom: 14px;
    }

    .lh-quote-mark {
        height: 25px;
        font-size: 2.5rem;
    }

    .lh-quote-card blockquote {
        margin: 4px 0 8px;
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .lh-quote-card p strong {
        font-size: 0.68rem;
    }

    .lh-quote-card p small {
        font-size: 0.56rem;
    }

    .lh-quote-card button {
        margin-top: 7px;
        font-size: 0.62rem;
    }

    .lh-quote-card img {
        max-height: 230px;
    }

    .lh-how-section {
        padding: 8px 0;
    }

    .lh-how-section .lh-section-head {
        display: none;
    }

    .lh-steps {
        border-color: #d7b766;
        border-radius: 10px;
        background: var(--lh-cream);
        color: var(--lh-ink);
    }

    .lh-steps li {
        min-height: 86px;
        padding: 8px 6px;
    }

    .lh-steps li + li {
        border-left-color: rgba(93, 63, 12, 0.18);
    }

    .lh-steps li + li::before {
        background: var(--lh-cream);
        color: #9b6c0e;
    }

    .lh-steps li > span {
        width: 34px;
        height: 34px;
        margin-bottom: 4px;
        border-color: #a97715;
        color: #81570a;
    }

    .lh-steps li > span svg {
        width: 20px;
        height: 20px;
    }

    .lh-steps b {
        color: #2c210f;
        font-size: 0.67rem;
    }

    .lh-steps small {
        margin-top: 1px;
        color: #76613e;
        font-size: 0.55rem;
    }

    .lh-download-section {
        padding: 0 0 8px;
    }

    .lh-download-card {
        min-height: 92px;
        grid-template-columns: 68px minmax(220px, 1fr) 82px auto;
        gap: 14px;
        padding: 8px 14px;
        border-radius: 10px;
    }

    .lh-app-image {
        width: 62px;
        height: 62px;
        border-radius: 10px;
    }

    .lh-download-copy .lh-kicker {
        display: none;
    }

    .lh-download-copy h2 {
        margin: 0 0 3px;
        font-size: 1.1rem;
        line-height: 1.25;
    }

    .lh-download-copy p {
        font-size: 0.63rem;
        line-height: 1.45;
    }

    .lh-app-qr {
        width: 76px;
        flex-basis: 76px;
    }

    .lh-app-qr img {
        width: 68px;
        height: 68px;
        padding: 3px;
    }

    .lh-app-qr small {
        display: none;
    }

    .lh-store-buttons a {
        min-width: 132px;
        min-height: 43px;
        padding: 6px 10px;
    }

    .lh-footer {
        padding: 16px 0 10px;
    }

    .lh-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) 1.15fr;
        gap: 22px;
    }

    .lh-footer-brand {
        grid-column: 4;
        grid-row: 1;
        text-align: center;
    }

    .lh-footer-brand .lh-muted {
        display: none;
    }

    .lh-footer-logo {
        width: 108px;
        height: 68px;
        margin-inline: auto;
    }

    .lh-footer h3 {
        margin-bottom: 5px;
        font-size: 0.72rem;
    }

    .lh-footer a {
        margin: 2px 0;
        font-size: 0.62rem;
    }

    .lh-footer p {
        margin-top: 4px;
        font-size: 0.61rem;
        line-height: 1.55;
    }

    .lh-footer-bottom {
        padding-top: 7px;
        margin-top: 9px;
        font-size: 0.58rem;
    }
}
