/* ============================================================
   Laydn "Night shift" site styles (test, 16 Sep 2026).
   Dark, still, photographic. Replaces the moving Vanta background on the
   public pages. Loaded only where laydn_site_page_kind() says so, and every
   rule is scoped to body.lh-site or .lh-* classes, so the app (/app/*)
   can never pick any of it up.
   body.lh-photo-top = the page opens with a photo hero (header sits over it).
   Radius rule: tiles 22px, screens 14px, buttons 12px, pills fully round.
   ============================================================ */

body.lh-site {
    --lh-night:  #0A0B0A;
    --lh-tile:   #131512;
    --lh-tile-2: #1A1C19;
    --lh-edge:   rgba(255,255,255,0.08);
    --lh-text:   #F2F2F2;
    --lh-soft:   #C6CBC0;
    --lh-muted:  #A3A89C;
    --lh-volt:   #C8F135;
    --lh-fire:   #ff6b4a;
    --lh-wrap:   min(1320px, 100% - 48px);
    --lh-ease:   cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--lh-night);
    color: var(--lh-text);
}
html:has(body.lh-site) { background: #0A0B0A; }
body.lh-photo-top { padding-top: 0; }
body.lh-site .site-content { position: relative; z-index: 1; }

/* ---------- Header: solid by default, over the photo on photo-top pages ---------- */
body.lh-site .site-header {
    background: rgba(10,11,10,0.9);
    border-bottom-color: var(--lh-edge);
}
body.lh-photo-top .site-header {
    background: linear-gradient(180deg, rgba(10,11,10,0.55), rgba(10,11,10,0));
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
body.lh-photo-top .site-header.scrolled {
    background: rgba(10,11,10,0.86);
    border-bottom-color: var(--lh-edge);
    backdrop-filter: saturate(1.3) blur(14px);
    -webkit-backdrop-filter: saturate(1.3) blur(14px);
}
body.lh-site .site-header .container,
body.lh-site .site-footer .container { max-width: none; width: var(--lh-wrap); padding: 0; }
body.lh-site .brand-mark {
    width: 34px; height: 34px; border-radius: 9px; background: #0A0A0A;
    display: grid; place-items: center; overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
body.lh-site .brand-mark img { width: 25px; height: 25px; }
body.lh-site .brand .wordmark { color: #fff; letter-spacing: 0.06em; }
body.lh-site .primary-nav a { color: rgba(255,255,255,0.78); }
body.lh-site .primary-nav a:hover { color: #fff; }
body.lh-site .header-actions .login { color: #fff; }
body.lh-site .header-actions .login:hover { color: var(--lh-volt); }

/* ---------- Buttons (homepage) ---------- */
body.lh-site .btn,
body.lh-site .btn:link,
body.lh-site .btn:visited { border-radius: 12px; font-size: 16px; padding: 14px 22px; }
body.lh-site .btn:hover { transform: translateY(-1px); }
body.lh-site .btn:active { transform: translateY(1px); }
body.lh-site .lh .btn-lg { font-size: 17px; padding: 18px 26px; }
body.lh-site .btn.btn-ghost,
body.lh-site .btn.btn-ghost:link,
body.lh-site .btn.btn-ghost:visited {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
body.lh-site .btn.btn-ghost:hover,
body.lh-site .btn.btn-ghost:focus { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
body.lh-site .btn.btn-primary:hover,
body.lh-site .btn.btn-primary:focus { background: #d6ff52; border-color: #d6ff52; }
body.lh-site a:focus-visible,
body.lh-site button:focus-visible,
body.lh-site summary:focus-visible { outline: 3px solid var(--lh-volt); outline-offset: 3px; }

/* ---------- Page scaffolding ---------- */
.lh p { margin: 0; color: var(--lh-muted); text-wrap: pretty; }
.lh h1, .lh h2, .lh h3 { margin: 0; color: #fff; text-wrap: balance; }
.lh a:hover { color: inherit; }
.lh-wrap { width: var(--lh-wrap); margin-inline: auto; }
.lh-sec { padding-block: 72px; }
.lh-head { max-width: 820px; margin-bottom: 40px; }
.lh-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px !important;
    font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--lh-volt) !important;
}
.lh-eyebrow.is-fire { color: var(--lh-fire) !important; }
.lh-head h2 { font-size: clamp(32px, 3.6vw, 56px); line-height: 1.04; letter-spacing: -0.02em; }
.lh-head h2 span, .lh-accent { color: var(--lh-volt); }
.lh-head > p:not(.lh-eyebrow) { margin-top: 16px; font-size: 18px; line-height: 1.6; max-width: 62ch; }
.lh-tile {
    position: relative; min-width: 0; overflow: hidden; border-radius: 22px;
    background: var(--lh-tile); box-shadow: inset 0 0 0 1px var(--lh-edge);
}
.lh-tool { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: 17px; color: var(--lh-volt) !important; }
.lh-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 16px; color: var(--lh-volt); }
.lh-link i { font-size: 12px; transition: transform .2s var(--lh-ease); }
.lh-link:hover { color: var(--lh-volt) !important; }
.lh-link:hover i { transform: translateX(3px); }
.lh-foot { margin-top: 18px !important; font-size: 13px; color: rgba(242,242,242,0.5) !important; }
.lh-foot a { color: var(--lh-volt); }

/* ---------- Hero ---------- */
.lh-hero { position: relative; min-height: 820px; display: flex; flex-direction: column; overflow: hidden; }
.lh-hero-bg, .lh-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.lh-hero-bg img { object-fit: cover; object-position: 66% 50%; }
.lh-hero::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(8,9,8,0.94) 0%, rgba(8,9,8,0.76) 34%, rgba(8,9,8,0.14) 66%, rgba(8,9,8,0) 100%),
        linear-gradient(180deg, rgba(8,9,8,0.35) 0, rgba(8,9,8,0) 22%, rgba(8,9,8,0) 70%, var(--lh-night) 100%);
}
.lh-hero-inner { position: relative; z-index: 2; margin-block: auto; padding-block: 150px 150px; }
.lh-hero-copy { max-width: 680px; }
.lh-pill {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px !important;
    padding: 7px 15px 7px 11px; border-radius: 999px;
    background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
    font-size: 14px; font-weight: 600; color: #fff !important;
}
.lh-pill i { color: var(--lh-volt); }
.lh-hero h1 { font-weight: 400; }
.lh-kicker { display: block; margin-bottom: 14px; font-family: var(--font-body); font-size: 17px; font-weight: 600; letter-spacing: 0.02em; color: var(--lh-soft); }
.lh-big { display: block; font-size: clamp(46px, 5.6vw, 92px); line-height: 0.98; letter-spacing: -0.025em; color: #fff; }
.lh-big em { display: block; font-style: normal; color: var(--lh-volt); }
.lh-sub { margin-top: 24px !important; max-width: 46ch; font-size: 19px; line-height: 1.55; color: var(--lh-soft) !important; }
.lh-sub strong { color: #fff; font-weight: 600; }
.lh-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.lh-ticks-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; padding: 0; }
.lh-ticks-row li { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--lh-soft); }
.lh-ticks-row i { color: var(--lh-volt); font-size: 15px; }
.lh-alert {
    position: absolute; z-index: 3; right: calc((100% - var(--lh-wrap)) / 2); bottom: 150px;
    width: 380px; border-radius: 18px;
    box-shadow: 0 30px 60px -18px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.08);
}
@media (prefers-reduced-motion: no-preference) {
    .lh-alert { animation: lh-land 1s var(--lh-ease) 0.35s both; }
    @keyframes lh-land { from { transform: translateY(18px); } to { transform: none; } }
}

/* ---------- Do the maths ---------- */
.lh-vs-wrap { border-radius: 22px; overflow: hidden; background: var(--lh-tile); box-shadow: inset 0 0 0 1px var(--lh-edge); }
.lh-vs { width: 100%; border-collapse: collapse; }
.lh-vs th, .lh-vs td { padding: 20px 28px; text-align: left; font-size: 16px; border-bottom: 1px solid var(--lh-edge); }
.lh-vs tr:last-child td { border-bottom: 0; }
.lh-vs thead th { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lh-muted); background: rgba(0,0,0,0.25); }
.lh-vs thead th.us { color: var(--lh-volt); }
.lh-vs .feat { color: #fff; font-weight: 500; width: 30%; }
.lh-vs .us { background: rgba(200,241,53,0.07); color: #fff; font-weight: 500; width: 35%; }
.lh-vs td.us { box-shadow: inset 1px 0 0 rgba(200,241,53,0.25), inset -1px 0 0 rgba(200,241,53,0.25); }
.lh-vs .them { color: var(--lh-muted); }
.lh-vs .yes { color: var(--lh-volt); margin-right: 8px; }
.lh-vs .no { color: var(--lh-fire); margin-right: 8px; }

/* ---------- Smart product bento ---------- */
.lh-bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.lh-bento .lh-tile { display: flex; flex-direction: column; }
.lh-tile .lh-copy { display: flex; flex-direction: column; gap: 10px; padding: 32px 32px 26px; max-width: 620px; }
.lh-tile h3 { font-size: 28px; line-height: 1.1; letter-spacing: -0.01em; }
.lh-tile .lh-copy p { font-size: 16px; line-height: 1.6; }
.lh-planr { grid-column: 1 / span 7; }
.lh-laydr { grid-column: 8 / span 5; }
.lh-back  { grid-column: 1 / span 5; }
.lh-film  { grid-column: 6 / span 7; }
.lh-shot { flex: none; margin: auto 32px 0; height: 300px; overflow: hidden; border-radius: 14px 14px 0 0; background: #fff; box-shadow: 0 0 70px -14px rgba(200,241,53,0.18); }
.lh-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.lh-card { flex: none; margin: auto 32px 32px; overflow: hidden; border-radius: 14px; box-shadow: 0 0 60px -14px rgba(200,241,53,0.16); }
.lh-peek { flex: none; margin: auto auto 0; width: min(280px, 74%); padding: 9px 9px 0; border-radius: 38px 38px 0 0; background: #2B2E28; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.lh-peek img { width: 100%; height: 300px; object-fit: cover; object-position: top; border-radius: 30px 30px 0 0; }
.lh-film { text-decoration: none; background: var(--lh-tile); color: var(--lh-muted); }
.lh-film-media { position: relative; display: block; flex: 1; min-height: 0; overflow: hidden; }
.lh-film-media img { width: 100%; height: 100%; min-height: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: 60% 50%; transition: transform .8s var(--lh-ease); }
.lh-film:hover .lh-film-media img { transform: scale(1.03); }
.lh-film .lh-copy { flex: none; flex-direction: row; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 30px 26px; max-width: none; border-top: 1px solid var(--lh-edge); }
.lh-play {
    position: absolute; left: 17%; top: 50%; width: 92px; height: 92px; margin: -46px 0 0 -46px;
    border-radius: 50%; background: var(--lh-volt); color: #0A0B0A; display: grid; place-items: center;
    font-size: 30px; padding-left: 6px;
    box-shadow: 0 0 0 14px rgba(200,241,53,0.16), 0 24px 50px -12px rgba(0,0,0,0.7);
    transition: transform .25s var(--lh-ease), box-shadow .25s var(--lh-ease);
}
.lh-film:hover .lh-play { transform: scale(1.07); box-shadow: 0 0 0 20px rgba(200,241,53,0.2), 0 24px 50px -12px rgba(0,0,0,0.7); }
.lh-film h3 { font-size: 26px; }
.lh-film p { margin-top: 4px !important; }
.lh-film-len { flex: none; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.06); box-shadow: inset 0 0 0 1px var(--lh-edge); font-size: 14px; font-weight: 600; color: var(--lh-soft); }
.lh-film-len i { color: var(--lh-volt); }

/* ---------- Live board ---------- */
.lh-board-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.lh-board-head h2 { font-size: clamp(30px, 3.2vw, 50px); line-height: 1.05; letter-spacing: -0.02em; }
.lh-board-head h2 span { color: var(--lh-volt); }
.lh-live { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 12px !important; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lh-volt) !important; }
.lh-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lh-volt); box-shadow: 0 0 10px var(--lh-volt); }
@media (prefers-reduced-motion: no-preference) {
    .lh-live .dot { animation: lh-pulse 2s ease-in-out infinite; }
    @keyframes lh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
}
.lh-board { border-radius: 22px; overflow: hidden; background: var(--lh-tile); box-shadow: inset 0 0 0 1px var(--lh-edge); }
.lh-load { display: grid; grid-template-columns: 56px minmax(0, 1.6fr) minmax(0, 1.2fr) 90px 110px 110px; gap: 18px; align-items: center; padding: 20px 28px; border-bottom: 1px solid var(--lh-edge); transition: background-color .2s; }
.lh-load:last-child { border-bottom: 0; }
.lh-load:hover { background: rgba(255,255,255,0.025); }
.lh-load .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(200,241,53,0.1); color: var(--lh-volt); font-size: 18px; }
.lh-load .rt { font-family: var(--font-head); font-size: 19px; color: #fff; }
.lh-load .rt i { margin: 0 8px; font-size: 13px; color: var(--lh-volt); }
.lh-load .spec, .lh-load .wt, .lh-load .posted { font-size: 14px; color: var(--lh-muted); }
.lh-load .price { font-family: var(--font-head); font-size: 22px; color: var(--lh-volt); text-align: right; }
.lh-load .posted { text-align: right; }

/* ---------- Both sides ---------- */
.lh-sides { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lh-side { display: flex; flex-direction: column; }
/* One fixed-height strip for both cards: the row is pinned to the strip, so a single photo
   can't grow the row to its own height and spill under the text (it did on wide screens). */
.lh-side-photos { flex: none; display: grid; grid-template-rows: minmax(0, 1fr); gap: 4px; height: clamp(260px, 19vw, 400px); overflow: hidden; }
.lh-side-photos.two { grid-template-columns: 1fr 1fr; }
.lh-side-photos img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.lh-side-body { display: flex; flex-direction: column; gap: 12px; flex: 1; padding: 34px 36px 36px; }
.lh-tag { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; padding: 6px 13px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(200,241,53,0.1); box-shadow: inset 0 0 0 1px rgba(200,241,53,0.3); color: var(--lh-volt) !important; }
.lh-tag.is-fire { background: rgba(255,92,53,0.1); box-shadow: inset 0 0 0 1px rgba(255,92,53,0.32); color: var(--lh-fire) !important; }
.lh-side h3 { font-size: clamp(28px, 2.6vw, 38px); line-height: 1.08; margin-top: 6px; }
.lh-side-body > p { font-size: 16px; line-height: 1.6; }
.lh-list { list-style: none; margin: 10px 0 18px; padding: 0; display: grid; gap: 14px; }
.lh-list li { display: flex; gap: 14px; align-items: flex-start; }
.lh-list i { margin-top: 5px; font-size: 13px; color: var(--lh-volt); }
.lh-list.is-fire i { color: var(--lh-fire); }
.lh-list strong { display: block; font-weight: 500; color: #fff; }
.lh-list span { font-size: 14px; color: var(--lh-muted); }
.lh-side .btn { margin-top: auto; align-self: stretch; justify-content: center; }
body.lh-site .lh-side .btn.btn-ghost { border-color: var(--lh-fire); color: var(--lh-fire) !important; }
body.lh-site .lh-side .btn.btn-ghost i { color: var(--lh-fire) !important; }

/* ---------- How it works ---------- */
.lh-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lh-step { display: flex; flex-direction: column; overflow: hidden; }
.lh-step .lh-peek { margin: 34px auto 0; }
.lh-step .lh-peek img { height: 330px; }
.lh-step-copy { position: relative; padding: 26px 30px 32px; border-top: 1px solid var(--lh-edge); background: var(--lh-tile); }
.lh-num { position: absolute; top: 18px; right: 26px; font-family: var(--font-head); font-size: 54px; line-height: 1; color: var(--lh-volt) !important; opacity: 0.22; }
.lh-step h3 { font-size: 23px; margin-bottom: 10px; }
.lh-step p { font-size: 15px; line-height: 1.6; }

/* ---------- What's in the box ---------- */
.lh-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lh-feat { padding: 32px; display: flex; flex-direction: column; gap: 10px; }
.lh-feat > i { font-size: 26px; color: var(--lh-volt); margin-bottom: 8px; }
.lh-feat h3 { font-size: 21px; }
.lh-feat p { font-size: 15px; line-height: 1.6; }
.lh-feat.has-photo { justify-content: flex-end; min-height: 250px; }
.lh-feat.has-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; }
.lh-feat.has-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,10,0.15) 0%, rgba(10,11,10,0.55) 45%, rgba(10,11,10,0.94) 100%); }
.lh-feat.has-photo > *:not(img) { position: relative; z-index: 1; }
.lh-feat.has-photo p { color: var(--lh-soft); }

/* ---------- Pricing ---------- */
.lh-price { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.lh-price-copy { padding: 56px; display: flex; flex-direction: column; gap: 18px; }
.lh-price-copy h2 { font-size: clamp(34px, 3.8vw, 60px); line-height: 1.02; letter-spacing: -0.02em; }
.lh-price-copy h2 span { color: var(--lh-volt); }
.lh-flash { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; }
.lh-flash strong { font-family: var(--font-head); font-weight: 400; font-size: clamp(48px, 5vw, 80px); line-height: 1; color: var(--lh-volt); }
.lh-flash span { font-size: 18px; color: var(--lh-muted); }
.lh-price-copy > p:not(.lh-eyebrow):not(.lh-flash) { font-size: 17px; line-height: 1.65; max-width: 56ch; }
.lh-price-copy strong { color: #fff; font-weight: 600; }
.lh-price-art { position: relative; min-height: 420px; }
.lh-price-art > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.lh-price-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--lh-tile) 0%, rgba(19,21,18,0.35) 40%, rgba(19,21,18,0.1) 100%); }
.lh-price-art ul { position: absolute; z-index: 1; left: 36px; bottom: 36px; list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lh-price-art li { display: inline-flex; align-items: center; gap: 12px; padding: 10px 16px 10px 12px; border-radius: 999px; background: rgba(10,11,10,0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); font-size: 15px; font-weight: 500; color: #fff; }
.lh-price-art li i { color: var(--lh-volt); }

/* ---------- FAQ ---------- */
.lh-faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 64px; align-items: start; }
.lh-faq .lh-head { position: sticky; top: 110px; margin-bottom: 0; }
.lh-faq-list details { border-top: 1px solid var(--lh-edge); }
.lh-faq-list details:last-child { border-bottom: 1px solid var(--lh-edge); }
.lh-faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 18px; font-weight: 500; color: #fff; }
.lh-faq-list summary::-webkit-details-marker { display: none; }
.lh-faq-list summary::after { content: "+"; flex: none; font-family: var(--font-head); font-size: 26px; line-height: 1; color: var(--lh-volt); transition: transform .25s var(--lh-ease); }
.lh-faq-list details[open] summary::after { transform: rotate(45deg); }
.lh-faq-list details p { padding: 0 40px 24px 0; font-size: 16px; line-height: 1.7; max-width: 70ch; }

/* ---------- Final call ---------- */
.lh-final { position: relative; min-height: 520px; display: flex; align-items: center; }
.lh-final > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.lh-final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,10,0.96) 0%, rgba(10,11,10,0.82) 42%, rgba(10,11,10,0.2) 100%); }
.lh-final-copy { position: relative; z-index: 1; padding: 64px 56px; max-width: 760px; }
.lh-final h2 { font-size: clamp(36px, 4.4vw, 72px); line-height: 1.03; letter-spacing: -0.02em; }
.lh-final h2 span { color: var(--lh-volt); }
.lh-final-copy > p { margin-top: 18px !important; font-size: 18px; line-height: 1.6; color: var(--lh-soft) !important; max-width: 56ch; }

/* ---------- Footer on the homepage ---------- */
body.lh-site .site-footer { background: var(--lh-night); margin-top: 0; border-top-color: var(--lh-edge); }

/* ============================================================
   Superwide
   ============================================================ */
@media (min-width: 1680px) {
    body.lh-site { --lh-wrap: min(1520px, 100% - 120px); }
    .lh-hero { min-height: 900px; }
    .lh-hero-copy { max-width: 760px; }
    .lh-sub { font-size: 21px; }
    .lh-sec { padding-block: 88px; }
    .lh-shot, .lh-peek img { height: 340px; }
}
@media (min-width: 2200px) {
    body.lh-site { --lh-wrap: min(1760px, 100% - 200px); }
    .lh-hero { min-height: 1000px; }
    .lh-big { font-size: 110px; }
    .lh-kicker { font-size: 19px; }
    .lh-head h2 { font-size: 64px; }
    .lh-tile h3 { font-size: 32px; }
}

/* ============================================================
   Laptop and tablet
   ============================================================ */
@media (max-width: 1180px) {
    .lh-alert { width: 330px; bottom: 60px; }
    .lh-load { grid-template-columns: 48px minmax(0, 1.5fr) minmax(0, 1fr) 80px 96px; }
    .lh-load .posted { display: none; }
    .lh-price-copy { padding: 44px; }
}

@media (max-width: 900px) {
    .lh-sec { padding-block: 56px; }
    .lh-hero { min-height: 760px; }
    .lh-hero-inner { padding-block: 120px 170px; }
    .lh-alert { right: 24px; left: 24px; width: auto; max-width: 420px; bottom: 40px; }
    .lh-bento, .lh-sides, .lh-steps, .lh-feats, .lh-price, .lh-faq { grid-template-columns: 1fr; }
    .lh-planr, .lh-laydr, .lh-back, .lh-film { grid-column: auto; }
    .lh-faq { gap: 28px; }
    .lh-faq .lh-head { position: static; }
    .lh-price-art { min-height: 300px; order: -1; }
    .lh-price-art::after { background: linear-gradient(180deg, rgba(19,21,18,0.1) 0%, rgba(19,21,18,0.3) 55%, var(--lh-tile) 100%); }
    .lh-steps { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(280px, 46%); overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -24px; padding: 4px 24px 16px; scroll-padding-inline: 24px; scrollbar-width: none; }
    .lh-steps::-webkit-scrollbar { display: none; }
    .lh-step { scroll-snap-align: start; }
    .lh-feats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Phone
   ============================================================ */
@media (max-width: 640px) {
    body.lh-site { --lh-wrap: calc(100% - 32px); }
    body.lh-site .btn,
    body.lh-site .btn:link,
    body.lh-site .btn:visited { font-size: 16px; padding: 15px 16px; }
    .lh-sec { padding-block: 44px; }
    .lh-head { margin-bottom: 26px; }
    .lh-head h2 { font-size: 32px; }
    .lh-head > p:not(.lh-eyebrow) { font-size: 16px; }

    /* Phone: words on plain night at the top, the yard photo underneath them. */
    .lh-hero { min-height: 0; }
    .lh-hero-bg { top: auto; bottom: 0; height: 520px; }
    .lh-hero-bg img { object-position: 50% 78%; }
    .lh-hero::after { background: linear-gradient(180deg, var(--lh-night) 0%, var(--lh-night) calc(100% - 540px), rgba(8,9,8,0.25) calc(100% - 400px), rgba(8,9,8,0) calc(100% - 300px), rgba(8,9,8,0.35) 100%); }
    .lh-hero-inner { margin-block: 0; padding-block: 96px 430px; }
    .lh-pill { margin-bottom: 18px !important; font-size: 13px; }
    .lh-kicker { font-size: 15px; margin-bottom: 10px; }
    .lh-big { font-size: clamp(38px, 11vw, 48px); }
    .lh-sub { font-size: 16px; margin-top: 16px !important; }
    .lh-cta { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .lh-cta .btn { justify-content: center; padding-inline: 10px; }
    .lh-ticks-row { margin-top: 20px; gap: 8px 16px; }
    .lh-ticks-row li { font-size: 13px; }
    .lh-alert { left: 16px; right: 16px; bottom: 22px; width: calc(100% - 32px); max-width: none; }

    .lh-vs thead { display: none; }
    .lh-vs, .lh-vs tbody, .lh-vs tr, .lh-vs td { display: block; width: 100%; }
    .lh-vs tr { padding: 18px 20px; border-bottom: 1px solid var(--lh-edge); }
    .lh-vs tr:last-child { border-bottom: 0; }
    .lh-vs td { padding: 0; border: 0; font-size: 15px; }
    .lh-vs .feat { width: auto; font-family: var(--font-head); font-size: 18px; margin-bottom: 10px; }
    .lh-vs td.us { width: auto; background: none; box-shadow: none; margin-bottom: 6px; }
    .lh-vs td.us::before { content: "Laydn: "; color: var(--lh-volt); font-weight: 600; }
    .lh-vs td.them::before { content: "Typical board: "; color: var(--lh-muted); }

    .lh-tile .lh-copy { padding: 24px 22px 20px; }
    .lh-tile h3 { font-size: 24px; }
    .lh-shot { margin-inline: 22px; height: 210px; }
    .lh-card { margin: auto 22px 22px; }
    .lh-peek img { height: 240px; }
    .lh-film .lh-copy { padding: 18px 20px 22px; }
    .lh-play { left: 20%; width: 64px; height: 64px; margin: -32px 0 0 -32px; font-size: 21px; padding-left: 4px; box-shadow: 0 0 0 10px rgba(200,241,53,0.16), 0 18px 36px -10px rgba(0,0,0,0.7); }
    .lh-film h3 { font-size: 22px; }
    .lh-film-len { display: none; }

    .lh-board-head { margin-bottom: 20px; }
    .lh-load { grid-template-columns: 40px minmax(0, 1fr) auto; grid-template-areas: "ic rt price" "ic spec wt"; row-gap: 4px; column-gap: 14px; padding: 16px 18px; }
    .lh-load .ic { grid-area: ic; width: 40px; height: 40px; font-size: 16px; }
    .lh-load .rt { grid-area: rt; font-size: 16px; }
    .lh-load .rt i { margin: 0 5px; font-size: 11px; }
    .lh-load .spec { grid-area: spec; font-size: 13px; }
    .lh-load .wt { grid-area: wt; text-align: right; font-size: 13px; }
    .lh-load .price { grid-area: price; font-size: 18px; }

    .lh-side-photos { height: 200px; }
    .lh-side-body { padding: 24px 22px 26px; }

    .lh-steps { grid-auto-columns: 82%; margin-inline: -16px; padding-inline: 16px; scroll-padding-inline: 16px; }
    .lh-step .lh-peek img { height: 280px; }
    .lh-step-copy { padding: 22px 22px 26px; }

    .lh-feats { grid-template-columns: 1fr; gap: 12px; }
    .lh-feat { padding: 24px 22px; }
    .lh-feat.has-photo { min-height: 260px; }

    .lh-price-copy { padding: 28px 22px 30px; }
    .lh-price-art { min-height: 230px; }
    .lh-price-art ul { left: 20px; bottom: 20px; gap: 8px; }
    .lh-price-art li { font-size: 14px; padding: 8px 14px 8px 10px; }

    .lh-faq-list summary { font-size: 16px; padding: 18px 0; }
    .lh-faq-list details p { padding-right: 0; font-size: 15px; }

    .lh-final { min-height: 0; align-items: flex-end; }
    .lh-final > img { height: 55%; object-position: 70% 50%; }
    .lh-final::after { background: linear-gradient(180deg, rgba(10,11,10,0) 0%, rgba(10,11,10,0.5) 30%, rgba(10,11,10,0.96) 55%); }
    .lh-final-copy { padding: 180px 22px 30px; }
    .lh-final-copy .lh-cta { grid-template-columns: 1fr; }
}

/* ============================================================
   Inner pages (features, how it works, pricing, post a load)
   ============================================================ */

/* Page hero: the homepage treatment, a little shorter. */
.lh-hero--page { min-height: 700px; }
.lh-hero--page .lh-hero-inner { padding-block: 150px 120px; }
.lh-hero--page .lh-big { font-size: clamp(42px, 4.9vw, 80px); line-height: 1.0; }
.lh-hero--page .lh-hero-copy { max-width: 760px; }
.lh-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }
.lh-jump { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.lh-jump a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--lh-soft); text-decoration: none; background: rgba(255,255,255,0.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14); transition: background-color .2s, color .2s; }
.lh-jump a i { color: var(--lh-volt); font-size: 13px; }
.lh-jump a:hover { color: #fff; background: rgba(255,255,255,0.12); }

/* Text beside a real screen. */
.lh-splits { display: grid; gap: 110px; }
.lh-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.lh-split.rev .lh-split-copy { order: 2; }
.lh-split-copy .lh-tool { margin-bottom: 16px !important; }
.lh-split-copy h2 { font-size: clamp(30px, 3.1vw, 48px); line-height: 1.06; letter-spacing: -0.015em; }
.lh-split-copy > p { margin-top: 16px !important; font-size: 17px; line-height: 1.72; }
.lh-split-copy strong { color: #fff; font-weight: 600; }
.lh-checks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.lh-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; line-height: 1.5; color: var(--lh-soft); }
.lh-checks i { flex: none; margin-top: 4px; font-size: 13px; color: var(--lh-volt); }
.lh-checks.is-fire i { color: var(--lh-fire); }
.lh-stepno { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px !important; font-family: var(--font-head); font-size: 16px; color: var(--lh-volt) !important; }
.lh-stepno b { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--lh-volt); color: #0A0B0A; font-weight: 400; font-size: 17px; }

.lh-stage { position: relative; min-height: 500px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; padding: 44px 44px 0;
    background: radial-gradient(60% 55% at 50% 100%, rgba(200,241,53,0.14), rgba(200,241,53,0) 70%), var(--lh-tile); }
.lh-stage .lh-peek { margin: 0 auto; width: min(300px, 72%); }
.lh-stage .lh-peek img { height: 430px; }
.lh-stage .lh-wide { width: 100%; overflow: hidden; border-radius: 14px 14px 0 0; background: #fff; box-shadow: 0 0 70px -14px rgba(200,241,53,0.2); }
.lh-stage .lh-wide img { width: 100%; height: 380px; object-fit: cover; object-position: top left; }
.lh-stage .lh-card { margin: 0 auto 44px; width: 100%; max-width: 520px; align-self: center; }
.lh-stage.is-card { align-items: center; padding-bottom: 0; }
.lh-chip { position: absolute; z-index: 2; left: 26px; top: 30px; width: min(380px, calc(100% - 52px)); border-radius: 16px; box-shadow: 0 26px 50px -16px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.08); }
.lh-chip.is-low { top: auto; bottom: 40px; }

/* The marketplace loop, as four connected steps. */
.lh-loop { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.lh-loop li { position: relative; padding: 28px 26px 30px; }
.lh-loop li > i { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px; font-size: 20px; background: rgba(200,241,53,0.1); color: var(--lh-volt); }
.lh-loop li.is-fire > i { background: rgba(255,92,53,0.12); color: var(--lh-fire); }
.lh-loop h3 { font-size: 21px; margin-bottom: 8px; }
.lh-loop p { font-size: 15px; line-height: 1.55; }
.lh-loop li:not(:last-child)::after { content: ""; position: absolute; z-index: 2; top: 50px; right: -14px; width: 12px; height: 12px; border-top: 2px solid var(--lh-volt); border-right: 2px solid var(--lh-volt); transform: rotate(45deg); }

/* Included grid tags and the four-up variant. */
.lh-feats.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.lh-feat .lh-free { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--lh-volt); background: rgba(200,241,53,0.1); box-shadow: inset 0 0 0 1px rgba(200,241,53,0.25); }
.lh-feat .lh-free::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lh-volt); }
.lh-feats.has-tags .lh-feat p { margin-bottom: 14px !important; }

/* Pricing: the plan card that sits in the hero. */
.lh-plan { position: relative; z-index: 2; border-radius: 24px; padding: 34px 34px 30px; background: linear-gradient(180deg, rgba(200,241,53,0.09), rgba(200,241,53,0) 42%), rgba(19,21,18,0.94); box-shadow: inset 0 0 0 1px rgba(200,241,53,0.38), 0 40px 90px -40px rgba(0,0,0,0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.lh-plan-flag { display: inline-flex; padding: 7px 14px; border-radius: 999px; background: var(--lh-volt); color: #0A0B0A !important; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 18px !important; }
.lh-plan-now { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lh-muted) !important; }
.lh-plan-price { font-family: var(--font-head); font-size: clamp(76px, 7vw, 110px); line-height: 0.9; color: #fff !important; margin: 6px 0 10px !important; }
.lh-plan-after { font-size: 17px; color: var(--lh-soft) !important; }
.lh-plan-after strong { color: var(--lh-volt); font-weight: 600; }
.lh-plan .lh-checks { margin: 22px 0 26px; gap: 10px; }
.lh-plan .lh-checks li { font-size: 15px; }
.lh-plan .lh-checks strong { color: #fff; font-weight: 600; }
.lh-plan .btn { width: 100%; justify-content: center; }
.lh-plan-fine { margin-top: 14px !important; font-size: 13px; text-align: center; }

/* Commission calculator. */
.lh-calc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.lh-calc-in { padding: 40px; display: grid; gap: 30px; align-content: center; }
.lh-calc-in h3 { font-size: 26px; }
.lh-calc-in > p { margin-top: -18px !important; font-size: 15px; }
.lh-field label { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; font-size: 15px; font-weight: 500; color: #fff; }
.lh-field .val { font-family: var(--font-head); font-size: 20px; color: var(--lh-volt); }
.lh-field input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin: 8px 0; border-radius: 999px; background: rgba(255,255,255,0.12); cursor: pointer; }
.lh-field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lh-volt); box-shadow: 0 0 0 7px rgba(200,241,53,0.18); }
.lh-field input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border: 0; border-radius: 50%; background: var(--lh-volt); }
.lh-field input[type="range"]:focus-visible { outline: 3px solid var(--lh-volt); outline-offset: 8px; }
.lh-calc-out { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; background: #0E100D; box-shadow: inset 1px 0 0 var(--lh-edge); }
.lh-res { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lh-res > div { border-radius: 16px; padding: 22px; background: var(--lh-tile-2); box-shadow: inset 0 0 0 1px var(--lh-edge); }
.lh-res .rlabel { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lh-muted); }
.lh-res .rval { margin-top: 10px; font-family: var(--font-head); font-size: clamp(30px, 3vw, 46px); line-height: 1; }
.lh-res .them .rval { color: var(--lh-fire); }
.lh-res .us .rval { color: var(--lh-volt); }
.lh-res .rsub { margin-top: 8px; font-size: 12.5px; color: var(--lh-muted); }
.lh-calc-out .pr-save { border-radius: 16px; padding: 24px; background: rgba(200,241,53,0.08); box-shadow: inset 0 0 0 1px rgba(200,241,53,0.3); }
.lh-calc-out .pr-save .big { font-family: var(--font-head); font-size: clamp(40px, 4.4vw, 66px); line-height: 1; color: var(--lh-volt); }
.lh-calc-out .pr-save .lbl { margin-top: 10px; font-size: 15px; color: var(--lh-soft); }
.lh-calc-fine { font-size: 12.5px; }

/* Long-form copy beside a photo. */
.lh-read { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: 64px; align-items: start; }
.lh-prose h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.08; margin-bottom: 18px; }
.lh-prose h3 { font-size: 22px; margin: 36px 0 10px; }
.lh-prose p { margin-bottom: 16px !important; font-size: 17px; line-height: 1.8; }
.lh-prose strong { color: #fff; font-weight: 600; }
.lh-prose a,
.lh-faq-list details a { color: var(--lh-volt); text-decoration: underline; text-underline-offset: 3px; }
.lh-aside { position: sticky; top: 104px; }
.lh-aside figure { margin: 0; aspect-ratio: 4 / 5; }
.lh-aside figure img { width: 100%; height: 100%; object-fit: cover; }
.lh-aside .lh-aside-copy { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 26px; background: linear-gradient(180deg, rgba(10,11,10,0), rgba(10,11,10,0.92) 45%); }
.lh-aside h3 { font-size: 24px; margin-bottom: 8px; }
.lh-aside p { margin-bottom: 16px !important; font-size: 15px; color: var(--lh-soft); }

/* Centred call to action inside a section. */
.lh-mid-cta { margin-top: 56px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Legal pages and sign-up under the new look. */
body.lh-site .lg-legal { padding-top: 70px; }
body.lh-site .lg-legal > .container { max-width: none; width: var(--lh-wrap); padding: 0; }
body.lh-site .lg-legal p, body.lh-site .lg-legal li { max-width: 76ch; }
.lh-nowrap { white-space: nowrap; }
body.lh-site .lg-callout { background: rgba(200,241,53,0.05); }
body.lh-auth .lay-auth-section { position: relative; background: #0A0B0A; }
body.lh-auth .lay-auth-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,10,0.94), rgba(10,11,10,0.7) 45%, rgba(10,11,10,0.86)), url("../img/home/hero-yard-1600.jpg") center / cover no-repeat; opacity: 0.9; }
body.lh-auth .lay-auth-container { position: relative; z-index: 1; }
body.lh-tour .site-content { background: transparent; }

@media (min-width: 1680px) {
    .lh-hero--page { min-height: 780px; }
    .lh-stage { min-height: 560px; }
    .lh-stage .lh-peek img { height: 470px; }
}
@media (max-width: 1180px) {
    .lh-feats.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lh-loop { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lh-loop li:nth-child(2)::after { display: none; }
    .lh-hero-grid { gap: 36px; }
    .lh-calc { grid-template-columns: 1fr; }
    .lh-calc-out { box-shadow: inset 0 1px 0 var(--lh-edge); }
}
@media (max-width: 900px) {
    .lh-hero--page { min-height: 0; }
    .lh-hero-grid { grid-template-columns: 1fr; }
    .lh-split { grid-template-columns: 1fr; gap: 34px; }
    .lh-split.rev .lh-split-copy { order: 0; }
    .lh-splits { gap: 72px; }
    .lh-read { grid-template-columns: 1fr; gap: 36px; }
    .lh-aside { position: relative; top: auto; }
    .lh-aside figure { aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
    .lh-hero--page .lh-big { font-size: clamp(34px, 9.6vw, 44px); }
    .lh-hero--page .lh-hero-inner { padding-block: 96px 430px; }
    .lh-hero--page.has-plan .lh-hero-inner { padding-bottom: 60px; }
    .lh-hero--page.has-plan .lh-hero-bg { height: 360px; top: 0; bottom: auto; }
    .lh-hero--page.has-plan::after { background: linear-gradient(180deg, rgba(8,9,8,0.55) 0%, rgba(8,9,8,0.85) 260px, var(--lh-night) 360px, var(--lh-night) 100%); }
    .lh-jump { gap: 8px; }
    .lh-jump a { font-size: 13px; padding: 8px 13px; }
    .lh-stage { min-height: 380px; padding: 26px 22px 0; }
    .lh-stage .lh-peek img { height: 320px; }
    .lh-stage .lh-wide img { height: 250px; }
    .lh-stage .lh-card { margin-bottom: 26px; }
    .lh-chip { left: 16px; top: 18px; width: calc(100% - 32px); }
    .lh-split-copy > p { font-size: 16px; }
    .lh-loop { grid-template-columns: 1fr; }
    .lh-loop li::after { display: none; }
    .lh-feats.four { grid-template-columns: 1fr; }
    .lh-plan { padding: 26px 22px 24px; }
    .lh-calc-in, .lh-calc-out { padding: 26px 22px; }
    .lh-res { grid-template-columns: 1fr; }
    .lh-prose p { font-size: 16px; }
}

/* Phone framing for header photos whose action sits on the right of the frame. */
@media (max-width: 640px) {
    .lh-bg-right .lh-hero-bg img { object-position: 82% 70%; }
}

/* ============================================================
   Contact form, company details, link tiles (find loads, about, contact)
   ============================================================ */

/* Ways to reach us, under the contact heading. */
.lh-list.lh-routes { margin: 30px 0 0; }
.lh-routes a { color: var(--lh-volt); text-decoration: underline; text-underline-offset: 3px; }
.lh-routes a:hover { color: #fff; }

/* The form card reuses the pricing plan card (.lh-plan). */
.lh-contact .lh-hero-grid { align-items: start; }
.lh-contact .lh-hero-copy { padding-top: 24px; }
.lh .lh-form-title { font-size: 28px; line-height: 1.1; margin-bottom: 22px; }
.lh-form { display: grid; gap: 16px; }
.lh-form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.lh-input label { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; font-size: 14px; font-weight: 500; color: #fff; }
.lh-input label span { font-size: 12.5px; font-weight: 400; color: var(--lh-muted); }
.lh-input input,
.lh-input select,
.lh-input textarea {
    display: block; width: 100%; margin: 0; padding: 13px 14px;
    border-radius: 12px; border: 1px solid rgba(255,255,255,0.16);
    background: rgba(0,0,0,0.35); color: #fff;
    font-family: inherit; font-size: 16px; line-height: 1.4;
    transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.lh-input textarea { min-height: 132px; resize: vertical; }
.lh-input input::placeholder,
.lh-input textarea::placeholder { color: rgba(242,242,242,0.4); }
.lh-input input:hover,
.lh-input select:hover,
.lh-input textarea:hover { border-color: rgba(255,255,255,0.3); }
.lh-input input:focus,
.lh-input select:focus,
.lh-input textarea:focus { outline: none; border-color: var(--lh-volt); background: rgba(0,0,0,0.5); box-shadow: 0 0 0 3px rgba(200,241,53,0.22); }
.lh-input [aria-invalid="true"] { border-color: var(--lh-fire); }
.lh-select { position: relative; }
.lh-select select { -webkit-appearance: none; appearance: none; padding-right: 44px; cursor: pointer; }
.lh-select select option { background: #131512; color: #fff; }
.lh-select > i,
.lh-select > svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--lh-volt); pointer-events: none; }
.lh-hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lh-form .cf-turnstile { min-height: 65px; }
.lh-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.lh .lh-form-fine { font-size: 13px; text-align: center; }
.lh-form-fine a { color: var(--lh-volt); text-decoration: underline; text-underline-offset: 3px; }
.lh-form-errors { margin-bottom: 20px; padding: 14px 18px; border-radius: 12px; background: rgba(255,107,74,0.1); box-shadow: inset 0 0 0 1px rgba(255,107,74,0.45); }
.lh .lh-form-errors p { color: #fff; font-size: 15px; }
.lh-form-errors ul { margin: 6px 0 0; padding-left: 18px; }
.lh-form-errors li { color: var(--lh-soft); font-size: 14.5px; line-height: 1.5; }
.lh-sent { display: grid; justify-items: center; gap: 14px; padding: 26px 6px 8px; text-align: center; }
.lh-sent > i,
.lh-sent > svg { font-size: 46px; color: var(--lh-volt); }
.lh .lh-sent h2 { font-size: 28px; line-height: 1.12; }
.lh .lh-sent p { font-size: 16px; line-height: 1.6; color: var(--lh-soft); max-width: 36ch; }
.lh-sent p a { color: var(--lh-volt); }
.lh-sent .btn { width: auto; margin-top: 8px; }

/* Company details: a heading beside a definition list. */
.lh-facts { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 56px; padding: 52px 56px; align-items: start; }
.lh-facts-copy h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.06; letter-spacing: -0.015em; }
.lh .lh-facts-copy > p:not(.lh-eyebrow) { margin-top: 14px; font-size: 17px; line-height: 1.65; }
.lh-facts-copy a { color: var(--lh-volt); text-decoration: underline; text-underline-offset: 3px; }
.lh-facts dl { margin: 0; display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 0 32px; }
.lh-facts dt,
.lh-facts dd { padding: 15px 0; border-bottom: 1px solid var(--lh-edge); }
.lh-facts dt { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lh-muted); padding-top: 18px; }
.lh-facts dd { margin: 0; font-size: 16.5px; line-height: 1.5; color: #fff; }
.lh-facts dt:last-of-type,
.lh-facts dd:last-of-type { border-bottom: 0; }
.lh-facts dd a { color: var(--lh-volt); text-decoration: underline; text-underline-offset: 3px; }

/* Tiles that are whole links. */
a.lh-feat { text-decoration: none; transition: box-shadow .25s var(--lh-ease), transform .25s var(--lh-ease); }
a.lh-feat:hover { box-shadow: inset 0 0 0 1px rgba(200,241,53,0.45); transform: translateY(-2px); }
a.lh-feat .lh-link { margin-top: auto; padding-top: 10px; }
a.lh-feat:hover .lh-link i { transform: translateX(3px); }

@media (max-width: 1180px) {
    .lh-facts { gap: 40px; padding: 44px; }
}
@media (max-width: 900px) {
    .lh-contact .lh-hero-copy { padding-top: 0; }
    .lh-facts { grid-template-columns: 1fr; gap: 24px; padding: 34px 28px; }
}
@media (max-width: 640px) {
    .lh-form-row { grid-template-columns: 1fr; }
    .lh .lh-form-title { font-size: 24px; }
    .lh-contact .lh-plan { margin-top: 8px; }
    .lh-facts { padding: 28px 22px 16px; }
    .lh-facts dl { grid-template-columns: 1fr; }
    .lh-facts dt { padding: 14px 0 2px; border-bottom: 0; }
    .lh-facts dd { padding: 0 0 14px; }
}
@media (prefers-reduced-motion: reduce) {
    a.lh-feat, a.lh-feat:hover { transform: none; }
}
.lh-prose p.lh-eyebrow { font-size: 13px; line-height: 1.4; }

/* ============================================================
   Search landing pages (pages/page-landing.php)
   ============================================================ */

/* "In short": the direct answer, tucked up over the bottom of the hero photo. */
.lh-answer-sec { position: relative; z-index: 3; margin-top: -64px; padding-top: 0; }
.lh-answer {
    display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 48px; padding: 40px 48px;
    background: linear-gradient(90deg, rgba(200,241,53,0.08), rgba(200,241,53,0) 45%), var(--lh-tile);
    box-shadow: inset 0 0 0 1px rgba(200,241,53,0.28), 0 30px 70px -40px rgba(0,0,0,0.9);
}
.lh-answer-q .lh-eyebrow { margin-bottom: 12px !important; }
.lh-answer-q h2 { font-size: clamp(26px, 2.4vw, 36px); line-height: 1.1; letter-spacing: -0.01em; }
.lh .lh-answer-a p { font-size: 18px; line-height: 1.7; color: var(--lh-soft); }
.lh .lh-answer-a p + p { margin-top: 12px; }
.lh-answer-a strong { color: #fff; font-weight: 600; }

/* Bulleted lists inside the long read. */
.lh-prose ul { margin: 0 0 18px; padding-left: 20px; }
.lh-prose li { margin-bottom: 8px; font-size: 17px; line-height: 1.7; color: var(--lh-muted); }
.lh-prose li::marker { color: var(--lh-volt); }

@media (max-width: 900px) {
    .lh-answer { grid-template-columns: 1fr; gap: 14px; padding: 32px 28px; }
}
@media (max-width: 640px) {
    .lh-answer-sec { margin-top: -32px; }
    .lh-answer { padding: 26px 22px; }
    .lh .lh-answer-a p { font-size: 16px; }
    .lh-prose li { font-size: 16px; }
}

/* Landing heroes carry long headlines, so the shade reaches further across the photo. */
.lh-landing .lh-hero::after {
    background:
        linear-gradient(90deg, rgba(8,9,8,0.95) 0%, rgba(8,9,8,0.86) 36%, rgba(8,9,8,0.52) 58%, rgba(8,9,8,0.08) 84%, rgba(8,9,8,0) 100%),
        linear-gradient(180deg, rgba(8,9,8,0.35) 0, rgba(8,9,8,0) 22%, rgba(8,9,8,0) 70%, var(--lh-night) 100%);
}
@media (max-width: 640px) {
    .lh-landing .lh-hero::after {
        background: linear-gradient(180deg, var(--lh-night) 0%, var(--lh-night) calc(100% - 540px), rgba(8,9,8,0.25) calc(100% - 400px), rgba(8,9,8,0) calc(100% - 300px), rgba(8,9,8,0.35) 100%);
    }
}

/* Tour index: the link through to the guides hub (pages/page-walkthrough.php). */
body.lh-tour .lw-guides {
    position: relative; z-index: 1; display: flex; align-items: center; gap: 18px;
    margin: 20px 0 0; padding: 20px 26px; border-radius: 20px; text-decoration: none;
    background: linear-gradient(90deg, rgba(200,241,53,0.07), rgba(200,241,53,0) 60%), #151515;
    border: 1px solid rgba(255,255,255,0.09);
    transition: border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
body.lh-tour .lw-guides:hover { border-color: rgba(200,241,53,0.45); transform: translateY(-2px); }
body.lh-tour .lw-guides-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(200,241,53,0.12); color: #C8F135; font-size: 18px; }
body.lh-tour .lw-guides-tx { flex: 1; min-width: 0; font-size: 15px; line-height: 1.5; color: rgba(242,242,242,0.7); }
body.lh-tour .lw-guides-tx b { color: #fff; font-weight: 600; margin-right: 4px; }
body.lh-tour .lw-guides-go { flex: none; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 15px; color: #C8F135; white-space: nowrap; }
@media (max-width: 980px) {
    body.lh-tour .lw-guides { max-width: 520px; margin-inline: auto; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: start; gap: 12px 16px; padding: 20px 22px; }
    body.lh-tour .lw-guides-go { grid-column: 2; }
}
@media (prefers-reduced-motion: reduce) {
    body.lh-tour .lw-guides:hover { transform: none; }
}
