/* ─────────────────────────────────────────────
   Lawvy Technologies — company site
   ───────────────────────────────────────────── */

:root {
  --ink:        #060A15;
  --ink-2:      #0A1224;
  --ink-3:      #0E1830;
  --line:       rgba(198,169,107,0.18);
  --line-cool:  rgba(148,160,186,0.14);
  --text:       #F4F5F7;
  --muted:      #94A0BA;
  --gold:       #C6A96B;
  --gold-lite:  #EBD9AB;
  --gold-deep:  #A9853F;
  --wrap:       1160px;
  /* vertical rhythm: one value drives the gap between every section */
  --bay:        clamp(56px, 6.6vw, 84px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* fine film grain over everything */
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── typography ─────────────────────────────── */
h1, h2, h3 { font-weight: 600; line-height: 1.12; letter-spacing: -0.025em; }

h1 { font-size: clamp(2.5rem, 6.4vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.125rem; letter-spacing: -0.01em; }

.accent {
  background: linear-gradient(105deg, var(--gold-lite) 5%, var(--gold) 45%, #8E6E31 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  display: inline-block; margin-bottom: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}

.badge {
  display: inline-block; padding: 7px 16px; margin-bottom: 26px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(198,169,107,0.34);
  border-radius: 50px;
  background: rgba(176,141,74,0.07);
  backdrop-filter: blur(6px);
}

/* ── buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  font-size: 14.5px; font-weight: 600; white-space: nowrap;
  color: #161104;
  background: linear-gradient(135deg, var(--gold-lite), var(--gold-deep));
  border: 1px solid rgba(235,217,171,0.5);
  border-radius: 50px;
  box-shadow: 0 12px 34px -10px rgba(176,141,74,0.55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(176,141,74,0.7); }

.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-cool);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--line); box-shadow: none; }

.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ── nav ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px max(28px, calc((100vw - var(--wrap)) / 2 + 28px));
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding-top: 12px; padding-bottom: 12px;
  background: rgba(6,10,21,0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(148,160,186,0.1);
}

.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__mark {
  width: auto; height: 36px; flex: none;
  filter: drop-shadow(0 0 18px rgba(198,169,107,0.35));
}
.nav__name {
  font-size: 14px; font-weight: 700; letter-spacing: 0.16em; line-height: 1;
}
.nav__name-sub {
  display: block; margin-top: 4px;
  font-size: 8.5px; font-weight: 500; letter-spacing: 0.28em; color: var(--muted);
}

.nav__links { display: flex; gap: 30px; font-size: 14px; color: var(--muted); }
.nav__links a { transition: color .2s ease; }
.nav__links a:hover { color: var(--text); }

/* ── hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%,  rgba(176,141,74,0.15), transparent 62%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(36,64,111,0.42), transparent 68%),
    var(--ink-2);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 220px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

#scene { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  max-width: 900px; text-align: center;
}

.hero__sub {
  max-width: 640px; margin: 22px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--muted);
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 38px;
}

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  max-width: 780px; margin: 76px auto 0;
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero__stats > div { padding: 22px 20px; background: rgba(10,18,36,0.55); text-align: left; }
.hero__stats dt {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
}
.hero__stats dd { font-size: 13.5px; line-height: 1.5; color: var(--muted); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(148,160,186,0.55);
}
.hero__scroll span {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ── brand wall (vertical loop) ─────────────── */
.brands { position: relative; padding: var(--bay) 0; }
.brands__head { margin-bottom: 34px; }
.brands__head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.wall {
  --row: 96px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: calc(var(--row) * 3);
  overflow: hidden;
  border: 1px solid var(--line-cool); border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  /* feather the top and bottom so marks enter and leave rather than pop */
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.wall__col { position: relative; overflow: hidden; border-right: 1px solid var(--line-cool); }
.wall__col--last { border-right: 0; }

.wall__track {
  display: flex; flex-direction: column;
  animation: wallUp var(--dur, 38s) linear infinite;
}
.wall__track--rev { animation-name: wallDown; }

/* the list is duplicated in the markup, so -50% lands exactly on the copy */
@keyframes wallUp   { from { transform: translateY(0);    } to { transform: translateY(-50%); } }
@keyframes wallDown { from { transform: translateY(-50%); } to { transform: translateY(0);    } }

.bm {
  flex: none;
  display: grid; place-items: center;
  height: var(--row); padding: 0 20px;
  text-align: center; white-space: nowrap;
  color: rgba(232,238,248,0.62);
}

/* real marks: white-on-transparent, so opacity alone sets the weight.
   max-height keeps every logo optically similar regardless of source size. */
.bm img {
  width: auto; max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  opacity: 0.62;
}
.bm img[src$="ganni.svg"]  { max-height: 26px; }
.bm img[src$="antara.png"] { max-height: 46px; }   /* stacked lockup needs headroom */

/* wordmark treatments — stand-ins until real logo files land */
.bm--motilal { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.04em; }
.bm--ganni   { font-size: 1.55rem; font-weight: 700; letter-spacing: 0.06em; }
.bm--hello   { font-size: 1.4rem;  font-weight: 700; letter-spacing: -0.03em; }
.bm--antara  { font-size: 1.25rem; font-weight: 400; letter-spacing: 0.34em;
               font-family: Georgia, "Times New Roman", serif; }
.bm--meem    { font-size: 1.45rem; font-weight: 700; letter-spacing: 0.02em; }
.bm--food    { font-size: 1.45rem; font-weight: 400; letter-spacing: -0.035em; }
.bm--honest  { font-size: 0.92rem; font-weight: 400; letter-spacing: 0.17em; }

.brands__note {
  margin-top: 20px;
  font-size: 12.5px; color: rgba(148,160,186,0.7);
}
.brands__note strong { color: var(--gold); font-weight: 600; }

/* ── sections ───────────────────────────────── */
.section { position: relative; padding: var(--bay) 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(14,24,48,0.55), transparent); }

.sec-head { max-width: 680px; margin-bottom: 64px; }
.sec-head p { margin-top: 20px; font-size: 1.05rem; color: var(--muted); }

/* ── platform stack — a cabinet of drawers ──── */
.stack {
  position: relative;
  display: grid; gap: 10px;
  max-width: 940px; margin: 0 auto;
  padding-left: 44px;
}

/* the rail, with a pulse rising from Knowledge up to Experience */
.stack__rail {
  position: absolute; left: 17px; top: 6px; bottom: 46px; width: 2px;
  background: linear-gradient(to top, rgba(198,169,107,0.55), rgba(198,169,107,0.1));
  border-radius: 2px; overflow: hidden;
}
.stack__rail i {
  position: absolute; left: -3px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-lite);
  box-shadow: 0 0 14px 3px rgba(198,169,107,0.75);
  animation: riseUp 5.5s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes riseUp {
  0%        { top: 100%; opacity: 0; }
  12%       { opacity: 1; }
  85%       { opacity: 1; }
  100%      { top: -8px; opacity: 0; }
}

.layer {
  position: relative;
  display: grid; grid-template-columns: 78px 1fr;
  border: 1px solid var(--line-cool);
  border-radius: 14px; overflow: hidden;
  background: linear-gradient(100deg, rgba(22,34,62,0.95), rgba(12,20,40,0.75));
  transition: transform .32s cubic-bezier(.2,.7,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.layer::after {   /* tick joining each drawer back to the rail */
  content: ""; position: absolute; left: -27px; top: 50%;
  width: 22px; height: 1px; background: rgba(198,169,107,0.35);
}
.layer:hover, .layer:focus-visible {
  transform: translateX(12px);
  border-color: rgba(198,169,107,0.55);
  box-shadow: -14px 0 34px -20px rgba(0,0,0,0.9), 0 0 46px -22px rgba(198,169,107,0.5);
  outline: none;
}

/* the drawer's edge face — this is what gives it thickness */
.layer__edge {
  display: grid; place-items: center;
  border-right: 1px solid rgba(198,169,107,0.28);
  background: linear-gradient(160deg, rgba(198,169,107,0.2), rgba(176,141,74,0.05));
  transition: background .3s ease;
}
.layer__edge b {
  font-size: 1.15rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--gold-lite); opacity: .85;
  transition: opacity .3s ease, transform .3s ease;
}
.layer:hover .layer__edge { background: linear-gradient(160deg, rgba(198,169,107,0.34), rgba(176,141,74,0.1)); }
.layer:hover .layer__edge b { opacity: 1; transform: scale(1.1); }

.layer__body {
  display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 24px;
  padding: 24px 30px;
}
.layer h3 { font-size: 1.35rem; }
.layer p { font-size: 14.5px; color: var(--muted); }

.stack__foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 12px; font-size: 13px; color: rgba(148,160,186,0.7);
}
.stack__foot span { width: 26px; height: 1px; background: rgba(198,169,107,0.5); }

/* ── capability cards ───────────────────────── */
.cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  perspective: 1200px;
}

.card {
  position: relative; padding: 32px 30px 34px;
  border: 1px solid var(--line-cool);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  transform-style: preserve-3d;
  transition: border-color .3s ease, box-shadow .3s ease, transform .12s ease-out;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(198,169,107,0.14), transparent 62%);
}
.card:hover { border-color: rgba(198,169,107,0.42); box-shadow: 0 30px 60px -32px rgba(0,0,0,0.9); }
.card:hover::before { opacity: 1; }

.card__glyph {
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: 20px;
  font-size: 20px; color: var(--gold);
  border: 1px solid rgba(198,169,107,0.3);
  border-radius: 12px;
  background: rgba(176,141,74,0.09);
  transform: translateZ(30px);
}
.card h3 { margin-bottom: 10px; transform: translateZ(20px); }
.card p { font-size: 14.5px; color: var(--muted); transform: translateZ(12px); }

/* ── industries ─────────────────────────────── */
.inds {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background: var(--line-cool);
  border: 1px solid var(--line-cool);
  border-radius: 18px; overflow: hidden;
}
.ind {
  display: flex; flex-direction: column;
  padding: 32px 30px 34px;
  background: var(--ink);
  transition: background .35s ease;
}
.ind:hover { background: rgba(176,141,74,0.055); }

.ind__ico {
  display: grid; place-items: center;
  width: 42px; height: 42px; margin-bottom: 20px;
  color: var(--gold);
  border: 1px solid rgba(198,169,107,0.28);
  border-radius: 11px;
  background: rgba(176,141,74,0.07);
}
.ind__ico svg { width: 21px; height: 21px; }

.ind h3 { margin-bottom: 11px; font-size: 1.2rem; }
.ind p { font-size: 14.4px; color: var(--muted); }

.ind .ind__win {
  margin-top: auto; padding-top: 16px;
  font-size: 14.2px; font-weight: 500;
  color: var(--gold-lite);
}

/* ── product ────────────────────────────────── */
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.product__title { font-size: clamp(2.4rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.lede { font-size: 1.08rem; color: var(--muted); }

.product__tag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px; padding: 5px 13px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,169,107,0.32); border-radius: 50px;
  background: rgba(176,141,74,0.08);
}
.product__tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-lite); box-shadow: 0 0 10px var(--gold);
}

.product__next {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  margin-top: 72px; padding: 22px 26px;
  font-size: 14.5px; color: var(--muted);
  border: 1px dashed rgba(148,160,186,0.22); border-radius: 16px;
  background: rgba(255,255,255,0.015);
}
.product__next > span {
  padding: 4px 11px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(148,160,186,0.24); border-radius: 50px;
}
.product__next a { color: var(--gold); font-weight: 500; }
.product__next a:hover { color: var(--gold-lite); }

.ticks { list-style: none; margin: 28px 0 34px; display: grid; gap: 13px; }
.ticks li {
  position: relative; padding-left: 30px; font-size: 14.8px; color: #C7D0E2;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 15px; height: 8px;
  border-left: 1.6px solid var(--gold); border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}

.product__visual {
  position: relative; height: 430px;
  perspective: 1300px;
}
.pane {
  position: absolute; border-radius: 16px;
  border: 1px solid var(--line-cool);
  background: linear-gradient(150deg, rgba(22,36,66,0.9), rgba(10,18,36,0.85));
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.95);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.pane--back  { inset: 0 26% 26% 0;  transform: rotateY(-19deg) rotateX(9deg) translateZ(-90px); opacity: .45; }
.pane--mid   { inset: 12% 13% 13% 13%; transform: rotateY(-19deg) rotateX(9deg) translateZ(-40px); opacity: .7; }
.pane--front {
  inset: 24% 0 0 26%; padding: 22px;
  transform: rotateY(-19deg) rotateX(9deg);
  border-color: rgba(198,169,107,0.32);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,1), 0 0 70px -30px rgba(198,169,107,0.4);
}
.product__visual:hover .pane--front { transform: rotateY(-11deg) rotateX(5deg) translateZ(28px); }
.product__visual:hover .pane--mid   { transform: rotateY(-11deg) rotateX(5deg) translateZ(-30px); }
.product__visual:hover .pane--back  { transform: rotateY(-11deg) rotateX(5deg) translateZ(-70px); }

.pane__bar { display: flex; gap: 6px; margin-bottom: 20px; }
.pane__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(148,160,186,0.3); }
.pane__line {
  width: var(--w, 80%); height: 9px; margin-bottom: 12px; border-radius: 5px;
  background: rgba(148,160,186,0.16);
}
.pane__line--gold { background: linear-gradient(90deg, var(--gold), rgba(198,169,107,0.15)); }
.pane__cite {
  display: inline-block; margin-top: 14px; padding: 5px 11px;
  font-size: 10.5px; letter-spacing: 0.06em; color: var(--gold);
  border: 1px solid rgba(198,169,107,0.3); border-radius: 6px;
  background: rgba(176,141,74,0.09);
}

/* ── trust ──────────────────────────────────── */
.trust-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.trust {
  padding: 30px 26px;
  border-left: 1px solid rgba(198,169,107,0.3);
  background: linear-gradient(90deg, rgba(176,141,74,0.05), transparent 70%);
}
.trust h3 { margin-bottom: 10px; }
.trust p { font-size: 14.3px; color: var(--muted); }

/* ── cta band ───────────────────────────────── */
.cta-band {
  padding: calc(var(--bay) * 1.1) 0; text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(176,141,74,0.16), transparent 70%),
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(36,64,111,0.35), transparent 70%),
    var(--ink-2);
  border-top: 1px solid rgba(148,160,186,0.1);
}
.cta-band p { max-width: 520px; margin: 20px auto 0; color: var(--muted); }
.cta-band .hero__actions { margin-top: 36px; }

/* ── footer ─────────────────────────────────── */
.foot { padding: 56px 0 34px; border-top: 1px solid rgba(148,160,186,0.1); background: var(--ink); }
.foot__inner {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
  padding-bottom: 34px;
}
.foot__tag { margin-top: 14px; font-size: 13.5px; color: var(--muted); }
.foot__links { display: flex; flex-wrap: wrap; gap: 26px; font-size: 13.5px; color: var(--muted); }
.foot__links a:hover { color: var(--gold); }
.foot__base {
  padding-top: 24px; font-size: 12.5px; color: rgba(148,160,186,0.65);
  border-top: 1px solid rgba(148,160,186,0.08);
}

/* ── scroll reveal ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1) var(--d, 0s),
              transform .8s cubic-bezier(.2,.7,.3,1) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ── responsive ─────────────────────────────── */
@media (max-width: 940px) {
  .product { grid-template-columns: 1fr; gap: 56px; }
  .product__visual { height: 340px; }
  .layer__body { grid-template-columns: 1fr; gap: 8px; padding: 20px 22px; }
  .hero__stats { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  /* two columns, shorter box — three narrow columns crush the longer marks */
  .wall { --row: 84px; grid-template-columns: repeat(2, 1fr); height: calc(var(--row) * 3); }
  .wall__col--last { display: none; }
  .bm { padding: 0 10px; }
  .bm--honest { font-size: 0.8rem; letter-spacing: 0.12em; }
  .bm--motilal, .bm--ganni, .bm--hello, .bm--meem, .bm--food { font-size: 1.2rem; }
  .bm--antara { font-size: 1.05rem; letter-spacing: 0.26em; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  /* the rail costs more width than it earns on a phone */
  .stack { padding-left: 0; }
  .stack__rail { display: none; }
  .layer::after { display: none; }
  .layer { grid-template-columns: 58px 1fr; }
  .layer:hover, .layer:focus-visible { transform: none; }
  /* tighten the bar so the brand and CTA both fit a 360px screen */
  .nav { padding-left: 16px; padding-right: 16px; gap: 12px; }
  .btn--sm { padding: 9px 15px; font-size: 12.5px; }
  .hero { padding-top: 120px; }
  .hero__scroll { display: none; }
  .foot__inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }

  /* no loop, so drop the duplicated marks and let the wall size to content */
  .wall { height: auto; -webkit-mask-image: none; mask-image: none; }
  .bm[aria-hidden="true"] { display: none; }
}
