/* ============================================================
   LOOPMERCE - Homepage top (index.html only), reference-matched
   Loaded AFTER style.css. Components in this module:
     · Header (floating pill nav)      · Buttons (.btn-cta / .btn-outline)
     · Hero + copy                     · HeroProductShowcase (.showcase)
     · StatusPill (.status-pill)       · IntegrationStrip (.integrations)
   Scoped to the homepage; product pages keep style.css untouched.
   ============================================================ */

/* ============================================================
   1) HEADER - floating, lightly-tinted glass pill over the hero
   ============================================================ */
.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  padding-top: 16px;
  transition: padding .25s ease;
}
.site-header.scrolled { border-bottom-color: transparent; padding-top: 9px; }
.site-header .wrap { max-width: 1280px; }

.nav {
  position: relative;
  height: 64px;
  padding: 0 12px 0 22px;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(16,24,48,.05), 0 12px 34px rgba(16,24,48,.10);
}
.site-header.scrolled .nav { box-shadow: 0 1px 2px rgba(16,24,48,.06), 0 16px 40px rgba(16,24,48,.14); }

.nav-logo { flex: 1 0 auto; }
.nav-logo img { height: 28px; }

/* centered nav links, absolutely centered so logo/CTA widths don't shift them */
.nav-links {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  gap: 2px;
}
.nav-links a, .nav-login {
  font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: 9px clamp(10px, 0.95vw, 14px); border-radius: 100px;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease;
}
.nav-links a:hover, .nav-login:hover { background: var(--wash); color: var(--accent-ink); }

.nav-cta { flex: 1 0 auto; display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.nav-login { cursor: pointer; }

/* Products dropdown (refined) */
/* dropdown fully styled in style.css now (premium redesign) */

/* ============================================================
   2) BUTTONS - reference-grade primary pill + arrow, and outline
   ============================================================ */
.btn-cta, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; white-space: nowrap; cursor: pointer;
  letter-spacing: -.01em; text-decoration: none;
  transition: transform .18s ease, box-shadow .22s ease, filter .2s ease, border-color .2s ease, background .2s ease;
}

/* Primary - blue gradient pill with a light circular arrow + soft halo */
.btn-cta {
  position: relative; gap: 12px;
  padding: 9px 9px 9px 24px; border-radius: 100px;
  font-weight: 650; font-size: 1.02rem; color: #fff;
  background: linear-gradient(180deg, #4E8FF7 0%, #2C7BF0 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28),
              0 8px 20px rgba(44,123,240,.32), 0 2px 6px rgba(44,123,240,.28);
}
.btn-cta::before {                 /* soft outer halo like the reference */
  content: ""; position: absolute; inset: -4px; border-radius: inherit; z-index: -1;
  background: radial-gradient(closest-side, rgba(78,143,247,.45), transparent 78%);
  filter: blur(7px); opacity: .7;
}
.btn-cta:hover { transform: translateY(-2px); filter: brightness(1.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.30), 0 12px 28px rgba(44,123,240,.42), 0 3px 8px rgba(44,123,240,.30); }
.btn-cta:active { transform: translateY(0); }
.btn-cta__arrow {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--blue); flex: 0 0 auto;
  transition: transform .2s ease;
}
.btn-cta__arrow svg { width: 17px; height: 17px; }
.btn-cta:hover .btn-cta__arrow { transform: translateX(2px); }

/* smaller header variant */
.btn-cta--sm { padding: 7px 7px 7px 18px; font-size: .92rem; gap: 9px; }
.btn-cta--sm .btn-cta__arrow { width: 28px; height: 28px; }
.btn-cta--sm .btn-cta__arrow svg { width: 15px; height: 15px; }

/* Secondary - clean white pill */
.btn-outline {
  gap: 9px; padding: 15px 26px; border-radius: 100px;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(16,16,32,.04), 0 6px 16px rgba(16,16,32,.06);
}
.btn-outline:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--blue) 40%, var(--line));
  box-shadow: 0 2px 4px rgba(16,16,32,.05), 0 10px 24px rgba(16,16,32,.09); }

.btn-cta:focus-visible, .btn-outline:focus-visible,
.nav-login:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 45%, transparent); outline-offset: 2px;
}

/* ============================================================
   3) HERO shell + background
   ============================================================ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(24px, 3.2vw, 48px) 0 clamp(36px, 4vw, 60px);
  background: linear-gradient(180deg, #E9F1FC 0%, #F3F8FE 38%, #FFFFFF 84%);
}
.hero__container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }

.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(28,59,110,.10) 1px, transparent 1px);
  background-size: 30px 30px; opacity: .35;
  -webkit-mask-image: radial-gradient(80% 62% at 50% 4%, #000 0%, transparent 76%);
          mask-image: radial-gradient(80% 62% at 50% 4%, #000 0%, transparent 76%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.hero__glow--blue {
  width: 900px; height: 620px; left: calc(50% - 450px); top: 26%;
  background: radial-gradient(circle, rgba(60,130,246,.30) 0%, transparent 66%); opacity: .8;
}
.hero__glow--teal {
  width: 460px; height: 400px; right: 6%; top: 4%;
  background: radial-gradient(circle, rgba(21,169,138,.20) 0%, transparent 70%); opacity: .55;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(76px); opacity: .5; }
.hero__blob--1 { width: 400px; height: 400px; left: -8%; top: 22%; background: radial-gradient(circle, rgba(44,123,240,.16) 0%, transparent 70%); }
.hero__blob--2 { width: 360px; height: 360px; right: -7%; bottom: 6%; background: radial-gradient(circle, rgba(21,169,138,.14) 0%, transparent 70%); }

/* ---- Copy ---- */
.hero__copy { max-width: none; margin: 0 auto; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink);
  background: linear-gradient(180deg, #fff, var(--accent-soft));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  padding: 8px 15px 8px 12px; border-radius: 100px;
  box-shadow: 0 1px 2px rgba(16,16,32,.04), 0 4px 14px color-mix(in srgb, var(--accent) 10%, transparent);
}
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }

.hero__title {
  font-size: clamp(2.4rem, 2.0rem + 2.8vw, 4.5rem);   /* ~68px @1280 → 72px @1440 */
  line-height: 1.02; letter-spacing: -.03em; font-weight: 900; color: var(--ink);
  margin: 20px auto 0; max-width: 1120px;
}
.hero__lead {
  max-width: 660px; margin: 20px auto 0;
  font-size: clamp(1.06rem, 1.2vw, 1.19rem); line-height: 1.6; color: var(--muted);
}
.hero__actions { justify-content: center; margin-top: 30px; gap: 14px; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px; margin-top: 24px; list-style: none;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; color: var(--ink-2); }
.hero__trust li:not(:last-child)::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--line); margin-left: 6px; }
.hero__trust svg { width: 16px; height: 16px; color: var(--accent); flex: 0 0 auto; }

/* ============================================================
   4) HeroProductShowcase
   ============================================================ */
.showcase { position: relative; z-index: 1; margin-top: clamp(28px, 3.4vw, 48px); }
.showcase::before {                 /* radial glow directly behind the dashboard */
  content: ""; position: absolute; z-index: 0; left: 50%; top: 8%; transform: translateX(-50%);
  width: min(1000px, 92%); height: 78%;
  background: radial-gradient(60% 60% at 50% 40%, rgba(60,130,246,.20), transparent 70%);
  filter: blur(20px);
}
.showcase__stage { position: relative; z-index: 1; width: 100%; max-width: 1180px; margin: 0 auto; }

.shot { position: relative; margin: 0; }
.shot__parallax { will-change: transform; }
.shot__frame {
  position: relative; overflow: hidden;
  border-radius: clamp(12px, 1.1vw, 18px);
  border: 1px solid var(--line); background: #fff;
  box-shadow: 0 1px 2px rgba(28,59,110,.05), 0 10px 24px rgba(28,59,110,.08), 0 30px 64px rgba(28,59,110,.12);
}
.shot__bar {
  display: flex; align-items: center; gap: 7px; height: 32px; padding: 0 13px;
  background: #fff; border-bottom: 1px solid var(--line-2);
}
.shot__bar span { width: 9px; height: 9px; border-radius: 50%; background: #D8DEEA; }
.shot__media { position: relative; display: block; }
.shot__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.shot--ship .shot__media { aspect-ratio: 16 / 10; }
.shot--rep .shot__media, .shot--invoice .shot__media { aspect-ratio: 900 / 650; }

/* placement */
.shot--ship {
  position: relative; z-index: 2; width: 74%; margin: 0 auto; --rot: 0deg;
}
.shot--ship .shot__frame {
  box-shadow: 0 2px 4px rgba(28,59,110,.05), 0 18px 40px rgba(28,59,110,.10), 0 44px 92px rgba(28,59,110,.16);
}
.shot--rep     { position: absolute; z-index: 3; left: 0;  bottom: -7%; width: 31%; --rot: -3deg; transform: rotate(var(--rot)); }
.shot--invoice { position: absolute; z-index: 3; right: 0; bottom: -7%; width: 31%; --rot:  3deg; transform: rotate(var(--rot)); }

/* ============================================================
   5) StatusPill - floating status confirmations
   ============================================================ */
.status-pill {
  position: absolute; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 15px; font-size: .84rem; font-weight: 650; color: var(--ink);
  box-shadow: 0 2px 6px rgba(16,16,32,.06), 0 14px 30px rgba(16,16,32,.13);
}
.status-pill .ic { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto; }
.status-pill .ic svg { width: 12px; height: 12px; color: #fff; }
.status-pill--rep     .ic { background: var(--navy); }
.status-pill--ship    .ic { background: var(--blue); }
.status-pill--invoice .ic { background: var(--teal); }

.status-pill--ship    { top: -3%;  right: 15%; }
.status-pill--rep     { top: 34%;  left: -2%; }
.status-pill--invoice { top: 42%;  right: -2%; }

/* ============================================================
   6) IntegrationStrip - "Works seamlessly with" logo marquee
   ============================================================ */
.integrations { background: #fff; padding: clamp(38px, 5vw, 60px) 0; border-top: 1px solid var(--line-2); }
.integrations__label { text-align: center; font-size: .9rem; font-weight: 600; letter-spacing: .01em; color: var(--muted); margin-bottom: 26px; }
.integrations__marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.integrations__track { display: flex; align-items: center; gap: clamp(48px, 6vw, 96px); width: max-content; animation: heroMarquee 34s linear infinite; }
.integrations__marquee:hover .integrations__track { animation-play-state: paused; }
.logo-item { flex: 0 0 auto; width: clamp(132px, 13vw, 168px); display: flex; align-items: center; justify-content: center; }
.logo-item img { height: 34px; width: auto; opacity: .66; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease; }
.logo-item img:hover { opacity: .95; filter: grayscale(0); }
@keyframes heroMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   7) MOTION - entrance (reduced-motion safe; armed only by hero.js)
   ============================================================ */
.hero.hero-anim .hero__copy > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.hero.hero-anim.is-ready .hero__copy > * { opacity: 1; transform: none; }
.hero.hero-anim .hero__copy > *:nth-child(1) { transition-delay: 0s; }
.hero.hero-anim .hero__copy > *:nth-child(2) { transition-delay: .06s; }
.hero.hero-anim .hero__copy > *:nth-child(3) { transition-delay: .12s; }
.hero.hero-anim .hero__copy > *:nth-child(4) { transition-delay: .18s; }
.hero.hero-anim .hero__copy > *:nth-child(5) { transition-delay: .24s; }

.hero.hero-anim .shot { opacity: 0; transition: opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.hero.hero-anim .shot--ship    { transform: translateY(28px) scale(.985); transition-delay: .20s; }
.hero.hero-anim .shot--rep     { transform: translateX(-48px) rotate(calc(var(--rot) - 3deg)); transition-delay: .32s; }
.hero.hero-anim .shot--invoice { transform: translateX(48px)  rotate(calc(var(--rot) + 3deg)); transition-delay: .36s; }
.hero.hero-anim.is-ready .shot--ship    { opacity: 1; transform: rotate(var(--rot)); }
.hero.hero-anim.is-ready .shot--rep     { opacity: 1; transform: rotate(var(--rot)); }
.hero.hero-anim.is-ready .shot--invoice { opacity: 1; transform: rotate(var(--rot)); }

.hero.hero-anim .status-pill { opacity: 0; transform: scale(.9) translateY(6px); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.hero.hero-anim.is-ready .status-pill { opacity: 1; transform: none; }
.hero.hero-anim .status-pill--ship    { transition-delay: .52s; }
.hero.hero-anim .status-pill--rep     { transition-delay: .60s; }
.hero.hero-anim .status-pill--invoice { transition-delay: .68s; }

@media (prefers-reduced-motion: no-preference) {
  .hero.is-ready .shot--rep .shot__frame     { animation: heroFloatA 7s ease-in-out .9s infinite; }
  .hero.is-ready .shot--invoice .shot__frame { animation: heroFloatB 8s ease-in-out 1s  infinite; }
}
@keyframes heroFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes heroFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px);  } }

/* ============================================================
   8) RESPONSIVE
   ============================================================ */

/* Tablet - dashboard stays dominant, cards pulled in, rotations reduced */
@media (max-width: 1024px) {
  .shot--ship    { width: 78%; }
  .shot--rep     { width: 35%; --rot: -2deg; bottom: -5%; }
  .shot--invoice { width: 35%; --rot: 2deg;  bottom: -5%; }
  .status-pill--rep  { left: -1%; } .status-pill--invoice { right: -1%; }
}

/* Collapse the desktop nav into the hamburger (tablet + mobile) */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 10px 0 16px; }
  .shot--ship { width: 82%; }
  .shot--rep, .shot--invoice { width: 38%; bottom: -3%; }
  .hero__glow--teal, .hero__blob--1, .hero__blob--2 { display: none; }

  /* floating rounded mobile menu */
  .nav-mobile {
    margin: 8px 16px 0; padding: 10px; border: 1px solid var(--line);
    background: #fff; border-radius: 18px; box-shadow: 0 18px 44px rgba(16,24,48,.16);
  }
  .nav-mobile.show { display: block; animation: heroMenuIn .18s ease both; }
  .nav-mobile a { padding: 12px 12px; min-height: 44px; display: flex; align-items: center; }
  .nav-mobile .btn-cta { margin-top: 8px; justify-content: center; width: 100%; }

  /* Products accordion (mobile) */
  .nav-macc-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 12px 12px; min-height: 44px; font-family: inherit; font-weight: 500; font-size: 1rem;
    color: var(--ink); background: transparent; border: 0; border-radius: 10px; cursor: pointer;
  }
  .nav-macc-btn .chev { width: 18px; height: 18px; color: var(--muted); transition: transform .25s ease; }
  .nav-macc.open .nav-macc-btn .chev { transform: rotate(180deg); }
  .nav-macc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
  .nav-macc-panel a { padding-left: 24px; font-size: .95rem; color: var(--ink-2); }
  .nav-macc-btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--blue) 45%, transparent); outline-offset: -2px; }
}
@keyframes heroMenuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Mobile - stacked, dashboard first, no rotations, no overflow */
@media (max-width: 680px) {
  .hero__container { padding: 0 20px; }
  .hero__title { max-width: 20ch; font-size: clamp(2.5rem, 9.5vw, 2.85rem); letter-spacing: -.02em; }
  .hero__title br { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-cta, .hero__actions .btn-outline { width: 100%; }

  /* stacked showcase has no protruding cards, so the big desktop padding isn't needed */
  .hero { padding-bottom: clamp(24px, 6vw, 40px); }
  .showcase::before { display: none; }
  .showcase__stage { display: flex; flex-direction: column; gap: 18px; max-width: 460px; }
  .shot, .shot--ship, .shot--rep, .shot--invoice {
    position: relative; width: 100%; transform: none !important; bottom: auto; left: auto; right: auto;
  }
  .shot--ship { order: 0; } .shot--rep { order: 1; } .shot--invoice { order: 2; }
  .shot--rep .shot__media, .shot--invoice .shot__media { aspect-ratio: 16 / 10; }

  /* stage-level pills would pile up once cards stack - hide on mobile */
  .status-pill { display: none; }
  .hero.is-ready .shot--rep .shot__frame, .hero.is-ready .shot--invoice .shot__frame { animation: none; }
}

@media (max-width: 400px) {
  .hero__trust { gap: 8px 10px; }
  .status-pill { font-size: .8rem; padding: 7px 12px; }
}

/* Reduced motion - kill marquee + entrance, show everything static */
@media (prefers-reduced-motion: reduce) {
  .integrations__track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; row-gap: 20px; }
  .integrations__track .is-dup { display: none; }
}

/* ============================================================
   PART A - Unified header + hero "sky" canvas + refinements
   (appended; these overrides intentionally win over the rules above)
   ============================================================ */

/* Atmospheric sky behind header + hero + integration strip.
   Abstract soft haze - NOT literal clouds. Fades into white below. */
.sky {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1720px;                 /* atmosphere flows past the strip and gently into the next section */
  z-index: -1; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(38% 30% at 8% 33%, rgba(255,255,255,.92), transparent 62%),
    radial-gradient(34% 26% at 93% 22%, rgba(255,255,255,.82), transparent 62%),
    radial-gradient(52% 34% at 20% 86%, rgba(200,223,250,.55), transparent 66%),
    radial-gradient(50% 34% at 82% 90%, rgba(200,223,250,.5), transparent 66%),
    linear-gradient(180deg, #D8E7FB 0%, #E5EFFC 26%, #F1F7FE 58%, #FFFFFF 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
}
.sky__cloud { position: absolute; border-radius: 50%; filter: blur(58px); will-change: transform; }
.sky__cloud--1 { width: 640px; height: 300px; left: -9%; top: 11%;  background: radial-gradient(closest-side, rgba(255,255,255,.9), transparent 72%);  opacity: .7; }
.sky__cloud--2 { width: 560px; height: 260px; right: -7%; top: 29%;  background: radial-gradient(closest-side, rgba(255,255,255,.82), transparent 72%); opacity: .6; }
.sky__cloud--3 { width: 840px; height: 340px; left: 18%;  bottom: 15%; background: radial-gradient(closest-side, rgba(203,225,250,.6), transparent 72%); opacity: .6; }

/* Hero now sits ON the sky - drop its own opaque wash, tighten the tail */
/* overflow visible so the floating side cards + their shadows are never clipped;
   generous sky-filled bottom padding contains the full composition + breathing room
   before the "Works seamlessly with" strip. Mobile (stacked) tightens this below. */
.hero { background: transparent; overflow: visible; padding-bottom: clamp(96px, 10.5vw, 156px); }
.hero__grid { opacity: .16; }            /* keep only a whisper of grid over the sky */

/* Header - lightly frosted so the sky reads through it (no white band) */
.nav {
  background: rgba(255,255,255,.5);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 1px 2px rgba(16,24,48,.05), 0 8px 26px rgba(16,24,48,.09);
}
.site-header.scrolled .nav { background: rgba(255,255,255,.74); }   /* solidify over content */

/* Integration strip - continuous with the sky, more visible, deliberate */
.integrations { background: transparent; border-top: none; padding: clamp(10px, 1.4vw, 22px) 0 clamp(16px, 2vw, 30px); }
.integrations__label { color: var(--ink-2); font-weight: 650; letter-spacing: .04em; margin-bottom: 24px; }
.integrations__track { gap: clamp(44px, 5.5vw, 90px); }
/* real full-colour logos - definite height (viewBox-only SVGs need it) + individual
   max-widths so each stays balanced with no distortion (object-fit: contain) */
.logo-item { width: auto; }
.logo-item img { height: 26px; width: auto; max-width: 132px; object-fit: contain; opacity: .8; filter: none; transition: opacity .2s ease; }
.logo-item img:hover { opacity: 1; filter: none; }
.logo-item--back-market img { max-width: 128px; }
.logo-item--refurbed img   { max-width: 112px; }
.logo-item--dhl img        { max-width: 96px; }
.logo-item--ups img        { height: 32px; max-width: 40px; }
.logo-item--sendcloud img  { height: 32px; max-width: 40px; }
.logo-item--dpd img        { max-width: 62px; }
.logo-item--postnl img     { height: 30px; max-width: 34px; }
.logo-item--gsheets img    { height: 22px; max-width: 124px; }

/* Motion - header fade-in + very slow cloud drift (reduced-motion safe) */
@media (prefers-reduced-motion: no-preference) {
  .site-header { animation: heroHeaderIn .7s ease .04s both; }
  .sky__cloud--1 { animation: skyDriftA 72s ease-in-out infinite alternate; }
  .sky__cloud--2 { animation: skyDriftB 88s ease-in-out infinite alternate; }
  .sky__cloud--3 { animation: skyDriftA 104s ease-in-out infinite alternate; }
}
@keyframes heroHeaderIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes skyDriftA { from { transform: translateX(0); } to { transform: translateX(42px); } }
@keyframes skyDriftB { from { transform: translateX(0); } to { transform: translateX(-48px); } }

/* TASK 2 - remove the two horizontal "lines" under the hero.
   The hero's overflow:hidden was clipping these edge blobs into a hard line
   at its bottom. The sky already supplies the atmosphere, so drop them. */
.hero__blob--1, .hero__blob--2 { display: none; }
