/* Solutions pages · editorial system (agents / photographers / brokerages) */
/* Top padding was a flat 148px at every width — tuned for the desktop
   editorial layout, but on a phone it put the headline a third of the way
   down the screen before a single word was visible. Ramp it with the
   viewport instead: 40px on a 375px phone, reaching the original 148px by
   1200px so the desktop composition is unchanged. */
.lc-landing .sol-hero{padding:clamp(40px,-9px + 13.1vw,148px) 0 0;background:var(--white);}
/* Every other site page opens with .phero, which pairs a --bg-warm panel
   with a border-bottom, so the sticky white header reads as separated from
   the moment the page opens. .sol-hero is pure white with no edge, so the
   header (also white) blends straight into it and only gains a boundary
   once home.js adds .scrolled — which is why these three pages are the
   only ones that look like the top menu is missing its shadow at rest.
   Give the header that resting separation here; .nav.scrolled is one class
   more specific, so the scroll state still takes over on scroll. */
.lc-landing:has(.sol-hero) .nav{border-color:var(--border);box-shadow:0 4px 20px rgba(16,24,40,.05);}
/* :has() rather than a bare ".nav" because loadLandingCss never unloads a
   stylesheet — once any solutions page is visited, this file stays in the
   document for the rest of the SPA session, and home.css's .nav rule sets
   no box-shadow to override it with. A bare selector therefore followed the
   user onto every other page. Gating on .sol-hero being present scopes it to
   the pages it's meant for and re-evaluates on client-side navigation.
   Browsers without :has() simply keep today's scroll-only behavior. */
.lc-landing .sol-kicker{display:inline-flex;align-items:center;gap:14px;font-size:11.5px;font-weight:800;letter-spacing:.32em;text-transform:uppercase;color:var(--gold-dk);}
.lc-landing .sol-kicker::before{content:"";width:44px;height:1px;background:var(--gold-border);}
.lc-landing .sol-hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:64px;align-items:end;padding-bottom:64px;}
.lc-landing .sol-hero h1{font-size:clamp(42px,4.8vw,64px);line-height:1.04;letter-spacing:-.025em;font-weight:800;color:var(--ink);margin:24px 0 0;text-wrap:balance;}
/* That 24px top margin spaces the h1 under a .sol-kicker, but all three
   solutions heroes open with a bare <h1> — so it only ever added dead
   space above the fold. Drop it when the h1 really is first. */
.lc-landing .sol-hero h1:first-child{margin-top:0;}
.lc-landing .sol-hero h1 .em{color:var(--gold-dk);}
.lc-landing .sol-hero .lede{font-size:17.5px;line-height:1.65;color:var(--slate);margin-top:24px;max-width:520px;}
.lc-landing .sol-cta{display:flex;gap:12px;margin-top:32px;}
.lc-landing .sol-media{position:relative;}
.lc-landing .sol-media .frame{position:relative;aspect-ratio:16/11;background:#0b0d12;overflow:hidden;}
.lc-landing .sol-media video, .lc-landing .sol-media .frame img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.lc-landing .sol-media-cap{display:flex;align-items:baseline;gap:12px;padding-top:12px;border-top:1px solid var(--ink);margin-top:14px;font-size:10.5px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--slate-2);}
.lc-landing .sol-media-cap i{font-style:normal;color:var(--gold-dk);}
.lc-landing .sol-media-cap span:last-child{margin-left:auto;}
.lc-landing .sol-rule{border:0;border-top:1px solid var(--border);}
/* editorial section head */
.lc-landing .sol-sec{padding:88px 0;}
.lc-landing .sol-sechead{display:flex;align-items:baseline;gap:26px;border-bottom:1px solid var(--ink);padding-bottom:14px;flex-wrap:wrap;}
.lc-landing .sol-sechead h2{font-size:12.5px;font-weight:800;letter-spacing:.26em;text-transform:uppercase;color:var(--ink);}
.lc-landing .sol-sechead p{margin-left:auto;font-size:13.5px;color:var(--slate-2);font-weight:600;}
.lc-landing .sol-claim{font-size:clamp(28px,3vw,40px);font-weight:800;letter-spacing:-.02em;line-height:1.15;color:var(--ink);margin:36px 0 0;max-width:720px;text-wrap:balance;}
.lc-landing .sol-claim .em{color:var(--gold-dk);}
/* numbered ledger */
.lc-landing .ledger{margin-top:44px;}
.lc-landing .led-row{display:grid;grid-template-columns:72px .9fr 1.4fr;gap:28px;padding:28px 0;border-bottom:1px solid var(--border);align-items:baseline;}
.lc-landing .led-row .no{font-size:12px;font-weight:800;color:var(--gold-dk);font-variant-numeric:tabular-nums;letter-spacing:.1em;}
.lc-landing .led-row h4{font-size:19px;font-weight:800;color:var(--ink);letter-spacing:-.01em;}
.lc-landing .led-row p{font-size:15.5px;line-height:1.6;color:var(--slate);}
.lc-landing .ledger.two{display:grid;grid-template-columns:1fr 1fr;gap:0 56px;}
.lc-landing .ledger.two .led-row{grid-template-columns:60px 1fr;grid-template-rows:auto auto;}
.lc-landing .ledger.two .led-row .no{grid-row:1;}
.lc-landing .ledger.two .led-row h4{grid-row:1;}
.lc-landing .ledger.two .led-row p{grid-column:2;margin-top:8px;}
/* split feature */
.lc-landing .sol-split{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:center;}
.lc-landing .sol-split.flip>.sol-split-media{order:-1;}
.lc-landing .sol-split h3{font-size:clamp(26px,2.6vw,34px);font-weight:800;letter-spacing:-.02em;line-height:1.15;color:var(--ink);margin:18px 0 0;}
.lc-landing .sol-split h3 .em{color:var(--gold-dk);}
.lc-landing .sol-split>.sol-split-copy>p{font-size:16px;line-height:1.65;color:var(--slate);margin-top:18px;}
.lc-landing .sol-list{list-style:none;margin:26px 0 0;padding:0;}
.lc-landing .sol-list li{display:flex;gap:14px;align-items:baseline;padding:13px 0;border-top:1px solid var(--border);font-size:15px;font-weight:600;color:var(--ink-2);}
.lc-landing .sol-list li:last-child{border-bottom:1px solid var(--border);}
.lc-landing .sol-list li i{font-style:normal;font-size:10.5px;font-weight:800;color:var(--gold-dk);letter-spacing:.08em;flex:none;}
.lc-landing .sol-split-media .frame{position:relative;aspect-ratio:4/3.4;background:#0b0d12;overflow:hidden;}
.lc-landing .sol-split-media .frame img, .lc-landing .sol-split-media .frame video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
/* dark stat band */
.lc-landing .sol-stats{background:#0A0B0F;padding:76px 0;}
.lc-landing .sol-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.lc-landing .sol-stat{padding:6px 36px;border-left:1px solid rgba(255,255,255,.14);}
.lc-landing .sol-stat:first-child{border-left:0;padding-left:0;}
.lc-landing .sol-stat .n{font-size:52px;font-weight:800;letter-spacing:-.03em;color:#fff;line-height:1;}
.lc-landing .sol-stat .n .em{color:var(--gold);}
.lc-landing .sol-stat .l{font-size:13px;font-weight:600;color:rgba(255,255,255,.6);margin-top:12px;line-height:1.5;}
.lc-landing .sol-stat .s{display:block;font-size:10px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.32);margin-top:8px;}
/* pull quote */
.lc-landing .pullq{max-width:860px;margin:0 auto;text-align:left;position:relative;padding-top:40px;}
.lc-landing .pullq::before{content:"“";position:absolute;top:-8px;left:-6px;font-size:120px;line-height:1;color:var(--gold);font-weight:800;opacity:.35;}
.lc-landing .pullq blockquote{font-size:clamp(22px,2.4vw,30px);font-weight:700;line-height:1.42;letter-spacing:-.015em;color:var(--ink);}
.lc-landing .pullq cite{display:flex;align-items:center;gap:14px;margin-top:28px;font-style:normal;font-size:11.5px;font-weight:800;letter-spacing:.2em;text-transform:uppercase;color:var(--slate-2);}
.lc-landing .pullq cite::before{content:"";width:36px;height:1px;background:var(--gold);}
.lc-landing .pullq cite b{color:var(--ink);}
@media(max-width:900px){
  .lc-landing .sol-hero-grid, .lc-landing .sol-split{grid-template-columns:1fr;gap:40px;}
  .lc-landing .sol-split.flip>.sol-split-media{order:0;}
  .lc-landing .ledger.two{grid-template-columns:1fr;}
  .lc-landing .sol-stats-grid{grid-template-columns:1fr 1fr;gap:36px 0;}
  .lc-landing .sol-stat:nth-child(3){border-left:0;padding-left:0;}
  .lc-landing .led-row{grid-template-columns:52px 1fr;}
  .lc-landing .led-row p{grid-column:2;}
}
