/*
 * iBlogger — Luminae reference pass: Header + Hero
 * Loaded after luminae.css. Scope is limited to the homepage.
 */
.home-page {
  --lm-night: #0b1230;
  --lm-night-2: #151a4d;
  --lm-violet: #42359a;
  --lm-lilac: #8a4db8;
  --lm-white: #f7f4ee;
  --lm-dim: rgba(247,244,238,.56);
  --lm-header: rgba(6, 12, 34, .94);
}

/* Floating dark capsule, mirroring the reference header. */
.home-page .site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(870px, calc(100% - 42px));
  height: 66px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: var(--lm-header);
  box-shadow: 0 14px 40px rgba(3,7,25,.22), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  z-index: 800;
}
.home-page .site-header.is-scrolled {
  background: rgba(6,12,34,.96);
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 16px 46px rgba(3,7,25,.28);
}
.home-page .header-inner {
  width: 100%;
  height: 100%;
  padding: 0 10px 0 9px;
  margin: 0;
  display: grid;
  grid-template-columns: 148px 1fr 148px;
  align-items: center;
  gap: 12px;
}
.home-page .brand {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.home-page .site-logo { display: inline-flex; align-items: center; }
.home-page .site-logo-image {
  width: 126px;
  max-width: 126px;
  height: auto;
  filter: none;
}
.home-page .logo-light { display: none !important; }
.home-page .logo-dark { display: block !important; }
.home-page .desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-width: 0;
}
.home-page .desktop-nav .nav-link {
  padding: 8px 0;
  border-radius: 0;
  background: transparent !important;
  color: rgba(255,255,255,.54);
  font-size: .73rem;
  line-height: 1;
  font-weight: 520;
  white-space: nowrap;
}
.home-page .desktop-nav .nav-link:hover,
.home-page .desktop-nav .nav-link.is-active { color: #fff; }
.home-page .header-actions {
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  min-width: 0;
}
.home-page .header-actions .lm-header-utility { display: none; }
.home-page .header-actions .button-primary {
  min-height: 46px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,.7);
  background: #f7f4ee;
  color: #14172b;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  font-size: .72rem;
  font-weight: 650;
}
.home-page .header-actions .button-primary:hover {
  background: #fff;
  color: #0a0e22;
  transform: none;
}
.home-page .menu-toggle { display: none; color: #fff; }

/* Dark violet hero from the real template frame. */
.home-page .lm-hero {
  position: relative;
  min-height: clamp(720px, 100svh, 860px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 106%, rgba(239,105,223,.64) 0%, rgba(146,72,221,.50) 20%, rgba(66,58,162,.22) 42%, transparent 67%),
    linear-gradient(180deg, #0c1330 0%, #111843 37%, #26216f 65%, #7042aa 100%);
  color: var(--lm-white);
}
.home-page .lm-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: min(1360px, 108vw);
  height: 1200px;
  left: 50%;
  top: -180px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 4px dotted rgba(64,112,255,.78);
  box-shadow:
    0 0 18px 5px rgba(67,92,255,.34),
    0 0 48px 13px rgba(91,66,255,.31),
    0 0 100px 24px rgba(174,70,255,.22),
    inset 0 0 65px rgba(41,92,255,.14);
  filter: blur(.2px);
  opacity: .88;
}
.home-page .lm-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% -8%;
  height: 58%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,132,225,.62), rgba(122,70,220,.52) 30%, rgba(51,51,154,.12) 62%, transparent 74%);
  filter: blur(34px);
}
.home-page .lm-hero-copy {
  position: relative;
  z-index: 6;
  width: min(720px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 137px;
  text-align: center;
  color: var(--lm-white);
}
.home-page .lm-trust {
  display: inline-flex;
  width: auto;
  margin: 0 auto 16px;
  padding: 5px 9px 5px 7px;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.57);
  font-family: Arial, sans-serif;
  font-size: .57rem;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.home-page .lm-trust-avatars {
  display: flex;
  align-items: center;
  direction: ltr;
  padding-left: 3px;
}
.home-page .lm-trust-avatars img,
.home-page .lm-trust-badge {
  width: 20px;
  height: 20px;
  margin-left: -5px;
  border: 1.5px solid #1a1d4f;
}
.home-page .lm-trust-badge {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: .43rem;
  font-weight: 700;
}
.home-page .lm-hero h1 {
  max-width: 700px;
  margin: 0 auto 12px;
  color: #f8f4ee;
  font-family: Georgia, "Times New Roman", "Noto Naskh Arabic", serif;
  font-size: clamp(3rem, 4.7vw, 4.45rem);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.045em;
  text-shadow: 0 2px 18px rgba(2,4,20,.14);
}
.home-page .lm-hero h1 span {
  display: block;
  margin-top: .05em;
  font-family: Georgia, "Times New Roman", "Noto Naskh Arabic", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.04em;
}
.home-page .lm-hero-copy > p {
  max-width: 475px;
  margin: 0 auto 20px;
  color: rgba(247,244,238,.58);
  font-size: .76rem;
  line-height: 1.8;
  font-weight: 430;
}
.home-page .lm-hero .hero-actions { margin: 0; }
.home-page .lm-hero .button-large {
  min-width: 145px;
  min-height: 47px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.72);
  background: #f7f4ee;
  color: #191a29;
  box-shadow: 0 10px 24px rgba(7,8,27,.17);
  font-size: .71rem;
  font-weight: 650;
}
.home-page .lm-hero .button-large:hover { background:#fff; color:#10121f; transform:none; }

/* Reference hero uses a looping image ticker along the bottom. */
.home-page .lm-hero-marquee {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: -65px;
  overflow: hidden;
  padding: 22px 0 0;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3.5%, #000 96.5%, transparent 100%);
}
.home-page .lm-marquee-track {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  width: max-content;
  padding-right: 18px;
  animation: lmMarquee 42s linear infinite;
  will-change: transform;
}
.home-page .lm-marquee-set {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.home-page .lm-tile {
  flex: 0 0 auto;
  width: 164px;
  height: 242px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 20px 48px rgba(4,6,24,.18);
  transform-origin: 50% 100%;
}
.home-page .lm-tile img { width: 100%; height: 100%; object-fit: cover; }
.home-page .lm-tile:nth-child(3n+1) { height: 275px; transform: rotate(-2.2deg); }
.home-page .lm-tile:nth-child(3n+2) { width: 148px; height: 226px; transform: rotate(1.5deg); }
.home-page .lm-tile:nth-child(5n) { width: 178px; height: 258px; transform: rotate(2.2deg); }
.home-page .lm-tile:nth-child(7n) { width: 186px; height: 285px; transform: rotate(-1.3deg); }
@keyframes lmMarquee { to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) { .home-page .lm-marquee-track { animation: none; } }

/* The next section returns to the light editorial system. */
.home-page .lm-impact { padding-top: 28px; }

@media (max-width: 920px) {
  .home-page .site-header { width: min(680px, calc(100% - 30px)); height: 62px; top: 10px; }
  .home-page .header-inner { grid-template-columns: 1fr auto; padding: 0 9px 0 10px; }
  .home-page .desktop-nav { display: none; }
  .home-page .brand { justify-self: end; }
  .home-page .header-actions { justify-self: start; }
  .home-page .header-actions .button-primary { display: none; }
  .home-page .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
  }
  .home-page .site-logo-image { width: 121px; max-width: 121px; }
  .home-page .lm-hero-copy { padding-top: 126px; }
  .home-page .lm-hero h1 { font-size: clamp(3rem, 8vw, 4.2rem); }
  .home-page .lm-tile { width: 146px; height: 220px; border-radius: 25px; }
  .home-page .lm-tile:nth-child(3n+1) { height: 248px; }
  .home-page .lm-tile:nth-child(3n+2) { width: 132px; height: 204px; }
  .home-page .lm-tile:nth-child(5n) { width: 158px; height: 230px; }
  .home-page .lm-tile:nth-child(7n) { width: 165px; height: 254px; }
}

@media (max-width: 560px) {
  .home-page .site-header {
    width: calc(100% - 22px);
    height: 58px;
    top: 8px;
  }
  .home-page .header-inner { padding-inline: 8px; }
  .home-page .site-logo-image { width: 112px; max-width: 112px; }
  .home-page .menu-toggle { width: 39px; height: 39px; }
  .home-page .lm-hero {
    min-height: 760px;
    background:
      radial-gradient(ellipse at 50% 104%, rgba(238,110,220,.63), rgba(133,68,216,.46) 25%, rgba(58,51,153,.18) 52%, transparent 72%),
      linear-gradient(180deg, #0c1330 0%, #121847 39%, #272070 68%, #7040a9 100%);
  }
  .home-page .lm-hero::before {
    width: 710px;
    height: 790px;
    top: -175px;
    border-width: 3px;
  }
  .home-page .lm-hero-copy {
    width: calc(100% - 32px);
    padding-top: 118px;
  }
  .home-page .lm-trust {
    margin-bottom: 14px;
    font-size: .5rem;
    padding: 4px 8px 4px 6px;
  }
  .home-page .lm-trust-avatars img,
  .home-page .lm-trust-badge { width: 18px; height: 18px; }
  .home-page .lm-hero h1 {
    max-width: 360px;
    margin-bottom: 13px;
    font-size: clamp(2.55rem, 11.4vw, 3.35rem);
    line-height: 1.02;
  }
  .home-page .lm-hero-copy > p {
    max-width: 330px;
    margin-bottom: 18px;
    font-size: .72rem;
    line-height: 1.85;
  }
  .home-page .lm-hero .button-large {
    min-width: 139px;
    min-height: 45px;
  }
  .home-page .lm-hero-marquee { bottom: -24px; padding-top: 15px; }
  .home-page .lm-marquee-track,
  .home-page .lm-marquee-set { gap: 10px; }
  .home-page .lm-marquee-track { padding-right: 10px; animation-duration: 32s; }
  .home-page .lm-tile { width: 105px; height: 164px; border-radius: 20px; }
  .home-page .lm-tile:nth-child(3n+1) { height: 192px; }
  .home-page .lm-tile:nth-child(3n+2) { width: 92px; height: 150px; }
  .home-page .lm-tile:nth-child(5n) { width: 115px; height: 178px; }
  .home-page .lm-tile:nth-child(7n) { width: 121px; height: 198px; }
}

/* =========================================================
   V2.1 — Header + Hero final alignment pass
   Geometry calibrated against the supplied Luminae reference frame.
   ========================================================= */
.home-page .site-header {
  top: 9px;
  width: min(854px, calc(100% - 36px));
  height: 70px;
  background: rgba(7, 12, 35, .965);
  border-color: rgba(255,255,255,.075);
  box-shadow: 0 12px 34px rgba(4,7,26,.20), inset 0 1px 0 rgba(255,255,255,.025);
}
.home-page .header-inner {
  direction: ltr;
  grid-template-columns: 154px minmax(0,1fr) 168px;
  gap: 10px;
  padding: 0 8px 0 18px;
}
.home-page .site-header .brand {
  justify-self: start;
  direction: ltr;
  text-decoration: none;
}
.home-page .site-header .site-logo-image { display: none !important; }
.home-page .site-header .site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.home-page .site-header .site-logo::after {
  content: "iBlogger";
  color: #fbf9f4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.055em;
}
.home-page .desktop-nav {
  direction: ltr;
  gap: 27px;
}
.home-page .desktop-nav .nav-link {
  color: rgba(255,255,255,.53);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.home-page .header-actions {
  justify-self: end;
  direction: ltr;
}
.home-page .header-actions .button-primary {
  width: 160px;
  min-width: 160px;
  min-height: 54px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11px;
}

.home-page .lm-hero {
  height: 100svh;
  min-height: 720px;
  max-height: 900px;
  background:
    radial-gradient(ellipse 88% 56% at 50% 111%, rgba(255,118,226,.90) 0%, rgba(183,82,239,.74) 22%, rgba(92,63,215,.44) 43%, rgba(44,46,145,.17) 63%, transparent 78%),
    radial-gradient(ellipse 88% 54% at 50% 88%, rgba(79,55,220,.42), transparent 66%),
    linear-gradient(180deg, #0f173d 0%, #10183e 38%, #171a54 59%, #33227d 77%, #7440ad 100%);
}
.home-page .lm-hero::before {
  inset: auto;
  background: none !important;
  width: min(1530px, 106.25vw);
  height: 1200px;
  left: 50%;
  top: -240px;
  transform: translateX(-50%);
  border: 3px dotted rgba(53,101,255,.92);
  border-radius: 50%;
  box-shadow:
    0 0 13px 3px rgba(48,86,255,.55),
    0 0 34px 9px rgba(72,63,255,.48),
    0 0 70px 17px rgba(132,62,255,.34),
    0 0 125px 28px rgba(209,75,255,.20),
    inset 0 0 65px rgba(41,92,255,.09);
  filter: none;
  opacity: .94;
  z-index: 1;
}
.home-page .lm-hero::after {
  inset: auto -8% -22% -8%;
  height: 63%;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255,132,226,.72) 0%, rgba(170,82,234,.57) 27%, rgba(89,62,210,.30) 49%, rgba(40,40,132,.08) 68%, transparent 80%);
  filter: blur(24px);
  opacity: 1;
  z-index: 0;
}
.home-page .lm-hero-copy {
  width: min(720px, calc(100% - 42px));
  padding-top: 146px;
}
.home-page .lm-trust {
  min-height: 28px;
  margin-bottom: 20px;
  padding: 4px 10px 4px 7px;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: 9px;
  letter-spacing: .025em;
}
.home-page .lm-trust-avatars img,
.home-page .lm-trust-badge {
  width: 20px;
  height: 20px;
  margin-left: -5px;
}
.home-page .lm-hero h1 {
  max-width: 650px;
  margin-bottom: 15px;
  font-size: clamp(54px, 4.45vw, 64px);
  line-height: .96;
  letter-spacing: -.045em;
}
.home-page .lm-hero h1 span { margin-top: .035em; }
.home-page .lm-hero-copy > p {
  max-width: 470px;
  margin-bottom: 22px;
  color: rgba(247,244,238,.57);
  font-size: 12px;
  line-height: 1.7;
}
.home-page .lm-hero .hero-actions {
  display: flex;
  justify-content: center !important;
  align-items: center;
  flex-direction: row !important;
}
.home-page .lm-hero .button-large {
  width: auto !important;
  min-width: 160px;
  min-height: 48px;
  flex: 0 0 auto !important;
  border-radius: 999px;
  font-size: 11px;
}

.home-page .lm-hero-marquee {
  bottom: -28px;
  padding-top: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 1.4%, #000 98.6%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 1.4%, #000 98.6%, transparent 100%);
}
.home-page .lm-marquee-track,
.home-page .lm-marquee-set { gap: 27px; }
.home-page .lm-marquee-track {
  padding-right: 27px;
  animation-duration: 46s;
  animation-delay: -7s;
}
.home-page .lm-tile {
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(4,6,24,.15);
}
/* First seven tiles mirror the visible proportions in the reference frame. */
.home-page .lm-marquee-set .lm-tile:nth-child(1) { width: 198px; height: 370px; transform: rotate(-.8deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(1) img { transform: scale(1.2); object-position: 48% 48%; }
.home-page .lm-marquee-set .lm-tile:nth-child(2) { width: 166px; height: 300px; transform: rotate(1.1deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(3) { width: 142px; height: 282px; transform: rotate(.6deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(4) { width: 136px; height: 274px; transform: rotate(-.4deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(5) { width: 148px; height: 280px; transform: rotate(1.0deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(6) { width: 170px; height: 312px; transform: rotate(-1.2deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(7) { width: 205px; height: 366px; transform: rotate(1.0deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(8) { width: 154px; height: 292px; transform: rotate(-.5deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(9) { width: 148px; height: 280px; transform: rotate(.7deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(10) { width: 154px; height: 294px; transform: rotate(-.6deg); }
.home-page .lm-marquee-set .lm-tile:nth-child(11) { width: 165px; height: 310px; transform: rotate(.8deg); }

@media (max-width: 920px) {
  .home-page .site-header { top: 9px; width: min(680px, calc(100% - 26px)); height: 64px; }
  .home-page .header-inner { direction:ltr; grid-template-columns: 1fr auto; padding: 0 8px 0 18px; }
  .home-page .site-header .brand { justify-self:start; }
  .home-page .header-actions { justify-self:end; }
  .home-page .site-header .site-logo::after { font-size: 19px; }
  .home-page .lm-hero-copy { padding-top: 132px; }
}

@media (max-width: 560px) {
  .home-page .site-header {
    top: 8px;
    width: calc(100% - 20px);
    height: 58px;
  }
  .home-page .header-inner { padding: 0 8px 0 16px; }
  .home-page .site-header .site-logo::after { font-size: 17px; }
  .home-page .menu-toggle {
    display:inline-grid;
    width:40px;
    height:40px;
    border-radius:999px;
  }
  .home-page .lm-hero {
    height: 100svh;
    min-height: 700px;
    max-height: 820px;
    background:
      radial-gradient(ellipse 112% 48% at 50% 110%, rgba(255,118,226,.88), rgba(174,79,235,.66) 27%, rgba(83,59,207,.33) 50%, transparent 75%),
      linear-gradient(180deg, #0f173d 0%, #111940 42%, #1d1b5d 66%, #7040aa 100%);
  }
  .home-page .lm-hero::before {
    width: 690px;
    height: 650px;
    top: -172px;
    border-width: 2.5px;
    box-shadow:
      0 0 10px 2px rgba(48,86,255,.55),
      0 0 28px 7px rgba(72,63,255,.45),
      0 0 58px 14px rgba(142,61,255,.30);
  }
  .home-page .lm-hero-copy {
    width: calc(100% - 28px);
    padding-top: 112px;
  }
  .home-page .lm-trust {
    min-height: 25px;
    margin-bottom: 17px;
    font-size: 7.8px;
  }
  .home-page .lm-hero h1 {
    max-width: 360px;
    margin-bottom: 14px;
    font-size: clamp(39px, 11.2vw, 49px);
    line-height: 1.00;
  }
  .home-page .lm-hero-copy > p {
    max-width: 330px;
    margin-bottom: 18px;
    font-size: 10.5px;
    line-height: 1.75;
  }
  .home-page .lm-hero .button-large {
    width: auto !important;
    min-width: 148px;
    min-height: 46px;
    flex: 0 0 auto !important;
  }
  .home-page .lm-hero-marquee { bottom: -18px; padding-top: 12px; }
  .home-page .lm-marquee-track,
  .home-page .lm-marquee-set { gap: 12px; }
  .home-page .lm-marquee-track { padding-right: 12px; animation-duration: 34s; }
  .home-page .lm-marquee-set .lm-tile:nth-child(1) { width: 112px; height: 218px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(2) { width: 94px; height: 174px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(3) { width: 82px; height: 164px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(4) { width: 79px; height: 160px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(5) { width: 86px; height: 165px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(6) { width: 98px; height: 182px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(7) { width: 116px; height: 214px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(8) { width: 90px; height: 172px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(9) { width: 86px; height: 164px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(10) { width: 90px; height: 173px; }
  .home-page .lm-marquee-set .lm-tile:nth-child(11) { width: 96px; height: 182px; }
}

/* V2.1 final micro-calibration after rendered QA */
@media (min-width: 921px) {
  .home-page .lm-hero {
    background:
      radial-gradient(ellipse 18% 48% at 0% 47%, rgba(78,64,255,.35) 0%, rgba(115,56,240,.18) 42%, transparent 73%),
      radial-gradient(ellipse 18% 48% at 100% 47%, rgba(78,64,255,.35) 0%, rgba(115,56,240,.18) 42%, transparent 73%),
      radial-gradient(ellipse 88% 56% at 50% 111%, rgba(255,118,226,.90) 0%, rgba(183,82,239,.74) 22%, rgba(92,63,215,.44) 43%, rgba(44,46,145,.17) 63%, transparent 78%),
      radial-gradient(ellipse 88% 54% at 50% 88%, rgba(79,55,220,.42), transparent 66%),
      linear-gradient(180deg, #0f173d 0%, #10183e 38%, #171a54 59%, #33227d 77%, #7440ad 100%);
  }
  .home-page .lm-trust { margin-bottom: 13px; }
  .home-page .lm-hero-marquee { bottom: 4px; }
  .home-page .lm-marquee-track {
    padding-left: 32px;
    animation-delay: 0s;
  }
}
/* Reset native <figure> margins; otherwise the ticker spacing is ~80px wider than reference. */
.home-page .lm-tile { margin: 0; }
/* Final frame alignment: match ticker X-origin and orbit width to the reference capture. */
@media (min-width: 921px) {
  .home-page .lm-hero::before { width: min(1460px, 101.4vw); }
  .home-page .lm-marquee-track { padding-left: 70px; }
}
