/* =====================================================================
   Luable — holding company site layout
   Depends on tokens defined in css/mcdt-brand.css (:root vars)
   ===================================================================== */

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }        /* contain decorative bleed (orbs, tilted phones) */
body { background: #fff; color: #2b2f38; max-width: 100%; }
img { max-width: 100%; height: auto; }
*, *::before, *::after { box-sizing: border-box; }
.lbl-section { padding: 96px 0; position: relative; }
.lbl-tint { background: #F6F7FF; }
.lbl-ink { background: var(--mcdt-ink); color: #fff; }
.container-xl-narrow { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Eyebrow / kicker */
.lbl-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mcdt-blue); background: var(--mcdt-blue-50);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.lbl-ink .lbl-kicker, .lbl-hero .lbl-kicker {
  color: #fff; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
}
.lbl-h2 {
  font-size: clamp(2rem, 1.2rem + 2.6vw, 3.1rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--mcdt-ink);
}
.lbl-h2 .g { color: var(--mcdt-blue); }
.lbl-ink .lbl-h2 { color: #fff; }
.lbl-lead { font-size: 1.15rem; line-height: 1.6; color: #566; max-width: 640px; }
.lbl-ink .lbl-lead { color: rgba(255,255,255,.8); }
.lbl-center { text-align: center; }
.lbl-center .lbl-lead { margin-left: auto; margin-right: auto; }

/* =====================================================================
   Top navigation (custom, responsive)
   ===================================================================== */
.lbl-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  padding: 20px 0;
}
.lbl-nav.scrolled {
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 6px 24px -16px rgba(16,16,16,.35);
  padding: 12px 0;
}
.lbl-nav .lbl-nav-inner {
  max-width: 1220px; margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lbl-logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.lbl-logo svg { width: 30px; height: 30px; }
.lbl-logo .w { font-weight: 800; font-size: 25px; letter-spacing: -.03em; line-height: 1; }
/* over hero (transparent) = white; scrolled = brand */
.lbl-nav .lbl-logo svg { color: #fff; }
.lbl-nav .lbl-logo .w { color: #fff; }
.lbl-nav.scrolled .lbl-logo svg { color: var(--mcdt-blue); }
.lbl-nav.scrolled .lbl-logo .w { color: var(--mcdt-ink); }

.lbl-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.lbl-menu a {
  text-decoration: none; font-weight: 600; font-size: 15px; color: rgba(255,255,255,.9);
  transition: color .2s ease;
}
.lbl-menu a:hover { color: #fff; }
.lbl-nav.scrolled .lbl-menu a { color: #40485a; }
.lbl-nav.scrolled .lbl-menu a:hover { color: var(--mcdt-blue); }
.lbl-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--mcdt-blue) !important; font-weight: 700 !important;
  padding: 10px 20px; border-radius: 999px; font-size: 15px;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.28); transition: transform .15s ease, background .2s;
}
.lbl-nav.scrolled .lbl-nav-cta { background: var(--mcdt-blue); color: #fff !important; }
.lbl-nav-cta:hover { transform: translateY(-1px); }
.lbl-right { display: flex; align-items: center; gap: 26px; }
.lbl-burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.lbl-burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }
.lbl-nav.scrolled .lbl-burger span { background: var(--mcdt-ink); }

@media (max-width: 900px) {
  .lbl-right .lbl-menu, .lbl-right .lbl-nav-cta { display: none; }
  .lbl-burger { display: block; }
  .lbl-nav.open { background: #fff; box-shadow: 0 6px 24px -16px rgba(16,16,16,.35); }
  .lbl-nav.open .lbl-logo svg { color: var(--mcdt-blue); }
  .lbl-nav.open .lbl-logo .w { color: var(--mcdt-ink); }
  .lbl-nav.open .lbl-burger span { background: var(--mcdt-ink); }
  .lbl-mobile-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 12px 22px 24px; box-shadow: 0 20px 30px -18px rgba(16,16,16,.4);
  }
  .lbl-nav.open .lbl-mobile-menu { display: block; }
  .lbl-mobile-menu a { display: block; padding: 13px 4px; font-weight: 600; color: #2b2f38; text-decoration: none; border-bottom: 1px solid #eef0f7; }
  .lbl-mobile-menu .lbl-nav-cta { display: inline-flex; background: var(--mcdt-blue); color: #fff !important; margin-top: 16px; }
}
.lbl-mobile-menu { display: none; }
@media (max-width: 900px){ .lbl-mobile-menu{ display:none; } }

/* =====================================================================
   Hero
   ===================================================================== */
.lbl-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 120% at 12% 8%, #2A34FF 0%, var(--mcdt-blue) 44%, var(--mcdt-blue-700) 100%);
  padding: 170px 0 90px;
}
.lbl-hero .orb { position: absolute; border-radius: 50%; filter: blur(12px); pointer-events: none; }
.lbl-hero .orb1 { width: 480px; height: 480px; right: -120px; top: -120px; background: radial-gradient(circle, rgba(0,181,226,.5), transparent 65%); }
.lbl-hero .orb2 { width: 460px; height: 460px; left: -140px; bottom: -180px; background: radial-gradient(circle, rgba(68,214,44,.36), transparent 65%); }
.lbl-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.lbl-hero h1 {
  font-size: clamp(2.6rem, 1.4rem + 4vw, 4.4rem); font-weight: 800; line-height: 1.04;
  letter-spacing: -.025em; color: #fff; margin: 0 0 22px;
}
.lbl-hero h1 .g { color: var(--mcdt-blue-100); }
.lbl-hero p.sub { font-size: 1.25rem; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 0 32px; }
.lbl-hero .btns { display: flex; flex-wrap: wrap; gap: 14px; }
.lbl-btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-weight: 700; padding: 15px 30px; border-radius: 999px; font-size: 1.02rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s;
}
.lbl-btn-white { background: #fff; color: var(--mcdt-blue); box-shadow: 0 12px 28px -10px rgba(0,0,0,.35); }
.lbl-btn-white:hover { transform: translateY(-2px); background: var(--mcdt-blue-50); color: var(--mcdt-blue-700); }
.lbl-btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1px solid rgba(255,255,255,.32); }
.lbl-btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.lbl-btn-blue { background: var(--mcdt-blue); color: #fff; box-shadow: 0 12px 28px -10px rgba(17,27,255,.5); }
.lbl-btn-blue:hover { background: var(--mcdt-blue-700); transform: translateY(-2px); }

/* Phone mockup (consistent product visual across the site) */
.lbl-phone {
  position: relative; border-radius: 40px; padding: 9px;
  background: linear-gradient(155deg, #20233a 0%, #0b0d18 100%);
  box-shadow: 0 44px 80px -26px rgba(0,0,0,.55), inset 0 0 0 1.5px rgba(255,255,255,.10);
}
.lbl-phone .screen {
  position: relative; border-radius: 31px; overflow: hidden; background: #fff;
  aspect-ratio: 412 / 892;
}
.lbl-phone .screen img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.lbl-phone .notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 20px; background: #0b0d18; border-radius: 0 0 14px 14px; z-index: 3;
}

/* Hero device card */
.lbl-hero-visual { position: relative; }
.lbl-hero-phones { position: relative; display: flex; justify-content: center; }
.lbl-hero-phones .lbl-phone { width: 274px; transform: rotate(1.5deg); }
.lbl-hero-glow { position: absolute; inset: 6% 8%; z-index: -1;
  background: radial-gradient(circle at 50% 40%, rgba(0,181,226,.5), rgba(68,214,44,.18) 55%, transparent 72%); filter: blur(26px); }
.lbl-devicecard {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px; padding: 18px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
}
.lbl-browser { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px -20px rgba(0,0,0,.4); }
.lbl-browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #eef0f7; }
.lbl-browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cfd4e6; display: inline-block; }
.lbl-browser-bar .url { margin-left: 12px; font-size: 12px; color: #8a90a6; background:#fff; border-radius:999px; padding:4px 12px; font-weight:600; }
.lbl-browser img { display: block; width: 100%; }
.lbl-float-badge {
  position: absolute; left: -26px; bottom: 28px; background: #fff; color: var(--mcdt-ink);
  border-radius: 16px; padding: 14px 18px; box-shadow: 0 24px 48px -18px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 12px;
}
.lbl-float-badge .n { font-size: 1.5rem; font-weight: 800; color: var(--mcdt-blue); line-height: 1; }
.lbl-float-badge .l { font-size: .78rem; color: #667; font-weight: 600; }
.lbl-float-badge .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--mcdt-green); display: grid; place-items: center; }

@media (max-width: 860px) {
  .lbl-hero { padding: 140px 0 70px; text-align: center; }
  .lbl-hero-grid { grid-template-columns: 1fr; }
  .lbl-hero p.sub { margin-left: auto; margin-right: auto; }
  .lbl-hero .btns { justify-content: center; }
  .lbl-hero-visual { margin-top: 10px; }
  .lbl-float-badge { left: 10px; }
}

/* =====================================================================
   Backers / trust strip
   ===================================================================== */
.lbl-trust { padding: 34px 0; border-bottom: 1px solid #eef0f7; }
.lbl-trust .lbl-trust-label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9aa1b4; margin-bottom: 22px; }
.lbl-trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.lbl-trust-row .item { font-weight: 800; font-size: 1.15rem; color: #737a8c; letter-spacing: -.01em; opacity: .9; }
.lbl-trust-row img { height: 30px; width: auto; filter: grayscale(1); opacity: .62; transition: .2s; }
.lbl-trust-row img:hover { filter: grayscale(0); opacity: 1; }

/* =====================================================================
   Stats band
   ===================================================================== */
.lbl-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lbl-stat { text-align: center; padding: 10px; }
.lbl-stat .n { font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.2rem); font-weight: 800; letter-spacing: -.03em; color: var(--mcdt-blue); line-height: 1; }
.lbl-ink .lbl-stat .n { color: #fff; }
.lbl-stat .n .u { color: var(--mcdt-cyan); }
.lbl-ink .lbl-stat .n .u { color: var(--mcdt-blue-100); }
.lbl-stat .l { margin-top: 12px; font-size: .98rem; font-weight: 600; color: #667; }
.lbl-ink .lbl-stat .l { color: rgba(255,255,255,.72); }
@media (max-width: 760px) { .lbl-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; } }

/* =====================================================================
   Pillars / value cards
   ===================================================================== */
.lbl-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.lbl-card {
  background: #fff; border: 1px solid #eceeffb0; border-radius: var(--mcdt-radius-card);
  padding: 34px 30px; box-shadow: 0 20px 44px -30px rgba(16,16,16,.16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lbl-card:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -28px rgba(17,27,255,.28); }
.lbl-card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.lbl-card .ic svg { width: 28px; height: 28px; }
.ic-blue { background: var(--mcdt-blue-50); color: var(--mcdt-blue); }
.ic-cyan { background: var(--mcdt-cyan-50); color: var(--mcdt-cyan-700); }
.ic-green { background: var(--mcdt-green-50); color: var(--mcdt-green-700); }
.lbl-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--mcdt-ink); margin: 0 0 10px; }
.lbl-card p { color: #5a6270; line-height: 1.6; margin: 0; font-size: 1rem; }
@media (max-width: 900px) { .lbl-cards { grid-template-columns: 1fr; } }

/* =====================================================================
   Flagship showcase
   ===================================================================== */
.lbl-flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lbl-flagship-badge {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  color: var(--mcdt-green-700); background: var(--mcdt-green-50); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.lbl-flagship-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mcdt-green); box-shadow: 0 0 0 4px rgba(68,214,44,.25); }
.lbl-mcdt-word { font-weight: 800; letter-spacing: -.02em; }
.lbl-mcdt-word b { color: var(--mcdt-blue); }
.lbl-flagship-list { list-style: none; padding: 0; margin: 24px 0 28px; }
.lbl-flagship-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: #40485a; font-weight: 500; line-height: 1.5; }
.lbl-flagship-list .ck { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--mcdt-blue-50); color: var(--mcdt-blue); display: grid; place-items: center; margin-top: 1px; }
.lbl-shot-wrap { position: relative; }
.lbl-shot { border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px -34px rgba(17,27,255,.4); border: 1px solid #e7e9f5; }
.lbl-shot img { display: block; width: 100%; }
.lbl-shot-blur { position: absolute; inset: auto -30px -30px auto; width: 60%; height: 60%; background: radial-gradient(circle at 70% 70%, rgba(17,27,255,.18), transparent 60%); filter: blur(20px); z-index: -1; }

/* Flagship: two overlapping phones */
.lbl-flagship-phones { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.lbl-flagship-phones .lbl-phone { position: absolute; }
.lbl-flagship-phones .back { width: 236px; transform: translate(-38%, -6%) rotate(-7deg); opacity: .96; }
.lbl-flagship-phones .front { width: 250px; transform: translate(30%, 8%) rotate(5deg); z-index: 2; }
.lbl-flagship-phones .glow { position: absolute; inset: 8%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(17,27,255,.28), transparent 65%); filter: blur(30px); }
@media (max-width: 900px) { .lbl-flagship-grid { grid-template-columns: 1fr; gap: 36px; }
  .lbl-flagship-phones { min-height: 440px; }
  .lbl-flagship-phones .back { width: 200px; } .lbl-flagship-phones .front { width: 214px; } }
@media (max-width: 560px) {
  .lbl-flagship-phones { min-height: 400px; }
  .lbl-flagship-phones .back { width: 166px; transform: translate(-30%,-6%) rotate(-7deg); }
  .lbl-flagship-phones .front { width: 182px; transform: translate(24%,8%) rotate(5deg); }
}

/* =====================================================================
   Portfolio grid
   ===================================================================== */
.lbl-portfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.lbl-pf {
  position: relative; border-radius: 22px; padding: 32px; overflow: hidden;
  border: 1px solid #ececf7; background: #fff; transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 20px 44px -32px rgba(16,16,16,.18);
}
.lbl-pf:hover { transform: translateY(-4px); box-shadow: 0 32px 60px -30px rgba(17,27,255,.26); }
.lbl-pf.feat { grid-column: span 2; background: linear-gradient(120deg, #F3F5FF 0%, #EAF7FC 100%); border-color: #e2e6ff; }
.lbl-pf-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.lbl-pf-logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; color: var(--mcdt-ink); }
.lbl-pf-logo .chip { background: var(--mcdt-blue); color: #fff; border-radius: 10px; padding: 3px 9px; font-size: 1rem; }
.lbl-tag { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.tag-live { color: var(--mcdt-green-700); background: var(--mcdt-green-50); }
.tag-dev { color: var(--mcdt-cyan-700); background: var(--mcdt-cyan-50); }
.tag-soon { color: var(--mcdt-blue); background: var(--mcdt-blue-50); }
.lbl-pf h3 { font-size: 1.35rem; font-weight: 800; margin: 0 0 8px; color: var(--mcdt-ink); }
.lbl-pf p { color: #5a6270; line-height: 1.55; margin: 0; }
.lbl-pf .lbl-pf-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.lbl-pf-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 700; color: var(--mcdt-blue); text-decoration: none; }
.lbl-pf-link:hover { gap: 10px; }
.lbl-feat-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.lbl-feat-inner .stats { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 18px; }
.lbl-feat-inner .stats .n { font-size: 1.7rem; font-weight: 800; color: var(--mcdt-blue); line-height: 1; }
.lbl-feat-inner .stats .l { font-size: .82rem; color: #667; font-weight: 600; margin-top: 4px; }
@media (max-width: 820px) { .lbl-portfolio { grid-template-columns: 1fr; } .lbl-pf.feat { grid-column: span 1; } .lbl-feat-inner { grid-template-columns: 1fr; } }

/* =====================================================================
   Approach steps
   ===================================================================== */
.lbl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.lbl-step { position: relative; padding-top: 8px; }
.lbl-step .num { font-size: 2.6rem; font-weight: 800; color: var(--mcdt-blue-100); line-height: 1; letter-spacing: -.03em; }
.lbl-ink .lbl-step .num { color: rgba(255,255,255,.28); }
.lbl-step h3 { font-size: 1.2rem; font-weight: 800; margin: 14px 0 8px; }
.lbl-step p { color: #5a6270; line-height: 1.6; margin: 0; }
.lbl-ink .lbl-step h3 { color: #fff; }
.lbl-ink .lbl-step p { color: rgba(255,255,255,.72); }
@media (max-width: 820px) { .lbl-steps { grid-template-columns: 1fr; gap: 30px; } }

/* =====================================================================
   Press
   ===================================================================== */
.lbl-press-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 46px; }
.lbl-press-row .p { font-weight: 800; font-size: 1.25rem; color: #9aa1b4; letter-spacing: -.01em; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
.lbl-press-row a.p:hover { color: var(--mcdt-blue); }
.lbl-press-row .p.serif { font-family: Georgia, 'Times New Roman', serif; font-style: italic; }

/* =====================================================================
   CTA band
   ===================================================================== */
.lbl-cta {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 130% at 85% 15%, #2A34FF 0%, var(--mcdt-blue) 46%, var(--mcdt-blue-700) 100%);
  border-radius: 34px; padding: 66px 56px;
}
.lbl-cta .orb { position: absolute; border-radius: 50%; filter: blur(14px); }
.lbl-cta .orb1 { width: 360px; height: 360px; left: -120px; bottom: -160px; background: radial-gradient(circle, rgba(68,214,44,.4), transparent 65%); }
.lbl-cta .orb2 { width: 320px; height: 320px; right: -100px; top: -140px; background: radial-gradient(circle, rgba(0,181,226,.45), transparent 65%); }
.lbl-cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.lbl-cta h2 { font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.8rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 14px; }
.lbl-cta p { color: rgba(255,255,255,.85); font-size: 1.12rem; line-height: 1.6; margin: 0; }
.lbl-form .fld { margin-bottom: 14px; }
.lbl-form label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: rgba(255,255,255,.9); }
.lbl-form input, .lbl-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.12);
  color: #fff; border-radius: 14px; padding: 13px 16px; font-family: var(--mcdt-font); font-size: 1rem;
}
.lbl-form input::placeholder, .lbl-form textarea::placeholder { color: rgba(255,255,255,.6); }
.lbl-form input:focus, .lbl-form textarea:focus { outline: none; border-color: #fff; background: rgba(255,255,255,.18); }
.lbl-form button {
  width: 100%; border: 0; border-radius: 999px; padding: 15px; font-weight: 700; font-size: 1.02rem; cursor: pointer;
  background: var(--mcdt-green); color: var(--mcdt-ink); font-family: var(--mcdt-font); transition: .2s;
}
.lbl-form button:hover { background: #fff; }

/* Contact via email (replaces the third-party subscribe form) */
.lbl-cta-contact { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.lbl-cta-contact .lbl-mail {
  font-size: clamp(1.35rem, 1rem + 1.5vw, 1.95rem); font-weight: 800; letter-spacing: -.02em;
  color: #fff; text-decoration: none; padding-bottom: 3px;
  border-bottom: 2px solid rgba(255,255,255,.4); transition: border-color .2s ease;
  word-break: break-word;
}
.lbl-cta-contact .lbl-mail:hover { border-color: #fff; }
.lbl-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 820px) { .lbl-cta { padding: 44px 26px; border-radius: 26px; } .lbl-cta-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =====================================================================
   Footer
   ===================================================================== */
.lbl-footer { background: var(--mcdt-ink); color: #fff; padding: 76px 0 34px; }
.lbl-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.lbl-footer .lbl-logo .w { color: #fff; }
.lbl-footer .lbl-logo svg { color: var(--mcdt-blue-200); }
.lbl-footer .desc { color: rgba(255,255,255,.62); line-height: 1.6; margin: 18px 0 22px; max-width: 320px; }
.lbl-footer h4 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 18px; font-weight: 700; }
.lbl-footer ul { list-style: none; padding: 0; margin: 0; }
.lbl-footer ul li { margin-bottom: 12px; }
.lbl-footer ul a { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 500; transition: color .2s; }
.lbl-footer ul a:hover { color: #fff; }
.lbl-social { display: flex; gap: 10px; }
.lbl-social a { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .2s; }
.lbl-social a:hover { background: var(--mcdt-blue); transform: translateY(-2px); }
.lbl-social svg { width: 18px; height: 18px; }
.lbl-footer-bar { border-top: 1px solid rgba(255,255,255,.1); margin-top: 54px; padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.lbl-footer-bar p { color: rgba(255,255,255,.5); margin: 0; font-size: .9rem; }
.lbl-footer-bar .links { display: flex; gap: 22px; }
.lbl-footer-bar .links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .9rem; }
.lbl-footer-bar .links a:hover { color: #fff; }
@media (max-width: 820px) { .lbl-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .lbl-footer-grid { grid-template-columns: 1fr; } }

/* reveal-on-scroll — progressive enhancement.
   Content is visible by default; only hidden once JS marks <html class="js">. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   Motion layer — subtle, fluid, GPU-only (transform/opacity).
   Continuous animation runs ONLY when the user welcomes motion.
   ===================================================================== */

/* Staggered entrance so card grids cascade in rather than pop together */
.js .lbl-cards .reveal:nth-child(2),
.js .lbl-portfolio .reveal:nth-child(2),
.js .lbl-steps .reveal:nth-child(2) { transition-delay: .09s; }
.js .lbl-cards .reveal:nth-child(3),
.js .lbl-portfolio .reveal:nth-child(3),
.js .lbl-steps .reveal:nth-child(3) { transition-delay: .18s; }
.js .lbl-portfolio .reveal:nth-child(4) { transition-delay: .27s; }

/* Hover: springy icon pop on cards */
.lbl-card .ic, .lbl-pf-icon { transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.lbl-card:hover .ic, .lbl-pf:hover .lbl-pf-icon { transform: translateY(-3px) scale(1.06); }

/* Hover: gentle zoom on product imagery (frames already clip via overflow:hidden) */
.lbl-browser img, .lbl-shot img, .lbl-phone .screen img { transition: transform .6s ease; }
.lbl-hero-visual:hover .lbl-browser img,
.lbl-flagship-grid:hover .lbl-phone .screen img,
.lbl-pf.feat:hover .lbl-phone .screen img { transform: scale(1.045); }

/* Continuous gentle float — device card, badge and phones drift softly */
@keyframes lbl-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: no-preference) {
  .lbl-devicecard      { animation: lbl-float 6s   ease-in-out infinite; }
  .lbl-float-badge     { animation: lbl-float 6s   ease-in-out infinite; animation-delay: -3s; }
  .lbl-flagship-phones { animation: lbl-float 7.5s ease-in-out infinite; }
  .lbl-pf.feat .lbl-phone { animation: lbl-float 6.5s ease-in-out infinite; }
}
