/* ════════════════════════════════════════════════════════
   LENZ MEDICAL BLOCKS — Frontend Styles
   Paleta oficial: #02C3FF · #0077FF · #102039
   ════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --lm-bg:           #ffffff;
  --lm-bg-tint:      #f6f8fb;
  --lm-fg:           #102039;
  --lm-fg-dim:       #4a5970;
  --lm-fg-soft:      #8795ad;
  --lm-line:         #e6ebf2;
  --lm-line-strong:  #cfd8e5;
  --lm-accent-a:     #02C3FF;
  --lm-accent-b:     #0077FF;
  --lm-navy:         #102039;
  --lm-navy-2:       #1a2b4a;
  --lm-font-sans:    'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lm-font-mono:    'Geist Mono', ui-monospace, 'SF Mono', monospace;
  --lm-font-display: 'Geist', -apple-system, sans-serif;
  --lm-radius-sm:    6px;
  --lm-radius-md:    12px;
  --lm-radius-lg:    20px;
  --lm-radius-xl:    32px;
  --lm-radius-pill:  999px;
  --lm-container:    1280px;
  --lm-gutter:       clamp(24px, 4vw, 56px);
}

/* ── GOOGLE FONTS ────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

/* ── BASE ────────────────────────────────────────────── */
.lm-container {
  max-width: var(--lm-container);
  margin: 0 auto;
  padding-inline: var(--lm-gutter);
}
.lm-mono {
  font-size: 0.75em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.lm-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lm-accent-a);
  box-shadow: 0 0 0 3px rgba(2,195,255,0.2);
  flex-shrink: 0;
}
.lm-dot--sm { width: 6px; height: 6px; box-shadow: 0 0 0 2px rgba(2,195,255,0.2); }
.lm-section-label        { color: var(--lm-fg-dim); margin-bottom: 24px; }
.lm-section-label--light { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ─────────────────────────────────────────── */
.lm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--lm-radius-pill);
  font-weight: 500; font-size: 14px; letter-spacing: -0.01em;
  transition: all 0.2s ease; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  font-family: var(--lm-font-sans); text-decoration: none;
}
.lm-btn--sm { padding: 10px 16px; font-size: 13px; }
.lm-btn--lg { padding: 18px 28px; font-size: 15px; }
.lm-btn--primary { background: var(--lm-navy); color: #fff; }
.lm-btn--primary:hover { background: var(--lm-accent-b); transform: translateY(-1px); color: #fff; }
.lm-btn--primary.lm-btn--on-dark { background: #fff; color: var(--lm-navy); }
.lm-btn--primary.lm-btn--on-dark:hover { background: var(--lm-accent-a); }
.lm-btn--ghost { background: transparent; color: var(--lm-navy); border-color: var(--lm-line-strong); }
.lm-btn--ghost:hover { border-color: var(--lm-navy); background: var(--lm-navy); color: #fff; }
.lm-btn--ghost.lm-btn--on-dark { color: #fff; border-color: rgba(255,255,255,0.25); }
.lm-btn--ghost.lm-btn--on-dark:hover { background: #fff; color: var(--lm-navy); border-color: #fff; }

/* ── HERO ────────────────────────────────────────────── */
.lm-hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
  background: var(--lm-bg);
  font-family: var(--lm-font-sans);
}
.lm-hero__gradient {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(50% 60% at 50% 55%, rgba(2,195,255,0.28) 0%, rgba(2,195,255,0) 60%),
    radial-gradient(40% 50% at 30% 70%, rgba(0,119,255,0.22) 0%, rgba(0,119,255,0) 65%),
    radial-gradient(40% 50% at 70% 70%, rgba(16,32,57,0.18) 0%, rgba(16,32,57,0) 65%);
}
.lm-hero__grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.25 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.4'/></svg>");
}
.lm-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--lm-container); margin: 0 auto;
  padding-inline: var(--lm-gutter); text-align: center;
}
.lm-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--lm-radius-pill);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--lm-line);
  font-family: var(--lm-font-mono); font-size: 11px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--lm-navy); margin-bottom: 32px;
}
.lm-hero__title {
  font-family: var(--lm-font-display);
  font-size: clamp(48px, 8.5vw, 120px);
  line-height: 1.05; letter-spacing: -0.04em; font-weight: 600;
  margin: 0 0 28px; color: var(--lm-navy); text-wrap: balance;
}
.lm-hero__title span {
  display: inline-block;
  font-family: var(--lm-font-sans);
  font-weight: 100;
  font-size: 0.95em; letter-spacing: -0.03em;
}
.lm-hero__sub {
  max-width: 560px; margin: 0 auto 36px;
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.55;
  color: var(--lm-fg-dim);
}
.lm-hero__actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 64px;
}
.lm-hero__product {
  position: relative; max-width: 380px; margin: 0 auto 40px; aspect-ratio: 4/5;
}
.lm-product-placeholder {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
}
.lm-product-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 40px 60px rgba(16,32,57,0.18)) drop-shadow(0 8px 16px rgba(0,119,255,0.08));
}
.lm-product-placeholder__label {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  padding: 6px 12px; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px);
  border: 1px dashed var(--lm-line-strong); border-radius: var(--lm-radius-sm);
  color: var(--lm-fg-soft); white-space: nowrap; font-size: 11px;
  font-family: var(--lm-font-mono); letter-spacing: 0.04em; text-transform: uppercase;
}
.lm-hero__product-img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 40px 60px rgba(16,32,57,0.18)) drop-shadow(0 8px 16px rgba(0,119,255,0.08));
}
.lm-hero__meta {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--lm-line);
}
.lm-hero__meta-item {
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start; text-align: left; font-size: 14px; color: var(--lm-navy);
  font-family: var(--lm-font-sans);
}
.lm-hero__meta-item .lm-mono { color: var(--lm-fg-soft); }
@media (max-width: 700px) { .lm-hero__meta { grid-template-columns: repeat(2,1fr); } }

/* ── LINES BENTO ─────────────────────────────────────── */
.lm-lines { padding: 120px 0; background: var(--lm-navy); color: #fff; font-family: var(--lm-font-sans); }
.lm-lines__header { margin-bottom: 56px; }
.lm-lines__header .lm-section-label { color: rgba(255,255,255,0.5); }
.lm-lines__title {
  font-family: var(--lm-font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 600;
  margin: 0; color: #fff; text-wrap: balance;
}
.lm-lines__title span { font-family: var(--lm-font-sans); font-weight: 100; }
.lm-lines__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lm-line-card {
  border-radius: var(--lm-radius-lg); padding: 36px 28px; min-height: 280px;
  display: flex; flex-direction: column; text-decoration: none; color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lm-line-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.25); }
.lm-line-card--1 { background: linear-gradient(140deg, #0d2a5e 0%, #0077FF 100%); }
.lm-line-card--2 { background: linear-gradient(140deg, #043d5a 0%, #02C3FF 100%); }
.lm-line-card--3 { background: linear-gradient(140deg, #102039 0%, #1a4a8a 100%); }
.lm-line-card--4 { background: linear-gradient(140deg, #1a2b4a 0%, #0d3a6e 100%); }
.lm-line-card__num {
  font-family: var(--lm-font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.lm-line-card__title {
  font-family: var(--lm-font-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.2; color: #fff;
}
.lm-line-card__desc {
  font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0; flex: 1;
}
.lm-line-card__count {
  font-family: var(--lm-font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: auto; padding-top: 20px;
}
@media (max-width: 900px) { .lm-lines__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .lm-lines__grid { grid-template-columns: 1fr; } }

/* ── PRODUCTS ────────────────────────────────────────── */
.lm-products {
  padding: 120px 0; background: var(--lm-bg-tint); position: relative;
  font-family: var(--lm-font-sans);
}
.lm-products__header {
  text-align: center; max-width: 760px; margin: 0 auto 72px;
}
.lm-products__header .lm-section-label { display: flex; justify-content: center; }
.lm-products__title {
  font-family: var(--lm-font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.035em; font-weight: 600;
  margin: 0 0 20px; color: var(--lm-navy);
}
.lm-products__title span {
  font-family: var(--lm-font-sans);
  font-weight: 100;
}
.lm-products__sub { 
	font-family: var(--lm-font-sans);
	font-size: 18px; 
	color: var(--lm-fg-dim); line-height: 1.55; margin: 0; }
.lm-products__group-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lm-fg-soft); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--lm-line);
}
.lm-products__cta { text-align: center; margin-top: 48px; }
.lm-products__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.lm-product {
  background: #fff; border-radius: var(--lm-radius-lg);
  overflow: hidden; border: 1px solid var(--lm-line);
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.lm-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16,32,57,0.1);
  border-color: var(--lm-line-strong);
}
.lm-product__visual {
  position: relative; aspect-ratio: 4/3.2; overflow: hidden; isolation: isolate;
}
.lm-product__gradient { position: absolute; inset: 0; z-index: 0; }
.lm-product--blue .lm-product__gradient {
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(0,119,255,0.35) 0%, rgba(0,119,255,0) 60%),
    linear-gradient(180deg, #eef3fb 0%, #d5e3f5 100%);
}
.lm-product--cyan .lm-product__gradient {
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(2,195,255,0.4) 0%, rgba(2,195,255,0) 60%),
    linear-gradient(180deg, #edfaff 0%, #cff0fb 100%);
}
.lm-product--navy .lm-product__gradient {
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(16,32,57,0.2) 0%, rgba(16,32,57,0) 60%),
    linear-gradient(180deg, #f3f5f8 0%, #dde2ea 100%);
}
.lm-product--warm .lm-product__gradient {
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(2,195,255,0.45) 0%, rgba(2,195,255,0) 60%),
    linear-gradient(180deg, #edfaff 0%, #b2eeff 100%);
}
.lm-product__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: var(--lm-radius-pill);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  font-family: var(--lm-font-sans); font-size: 10px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--lm-navy); border: 1px solid var(--lm-line);
}
.lm-product__svg {
  position: relative; z-index: 1; width: 100%; height: 100%;
  filter: drop-shadow(0 20px 30px rgba(16,32,57,0.15));
}
.lm-product__img {
  position: relative; z-index: 1; width: 100%; height: 100%;
  object-fit: cover; padding: 0;
  filter: drop-shadow(0 16px 24px rgba(16,32,57,0.18));
}
.lm-product__label {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-size: 10px; color: var(--lm-fg-soft);
  padding: 4px 8px; background: rgba(255,255,255,0.7); border-radius: 4px;
  font-family: var(--lm-font-mono); letter-spacing: 0.04em; text-transform: uppercase;
}
.lm-product__body {
  padding: 32px; flex: 1; display: flex; flex-direction: column; gap: 16px;
}
.lm-product__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.lm-product__name {
  font-family: var(--lm-font-display); font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0; color: var(--lm-navy);
}
.lm-product__tag {
  font-family: var(--lm-font-mono); font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--lm-fg-soft);
}
.lm-product__desc { font-size: 15px; line-height: 1.55; color: var(--lm-fg-dim); margin: 0; }
.lm-product__specs {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--lm-line);
  font-size: 13px; color: var(--lm-fg-dim); list-style: none; padding-inline-start: 0; margin: 0;
}
.lm-product__specs li { display: flex; align-items: center; gap: 10px; }
.lm-product__specs .lm-mono { color: var(--lm-accent-b); font-size: 13px; }
.lm-product__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px;
  font-size: 14px; font-weight: 500; color: var(--lm-navy); transition: gap 0.2s;
  text-decoration: none;
}
.lm-product__link:hover { gap: 12px; color: var(--lm-accent-b); }
@media (max-width: 900px) { .lm-products__grid { grid-template-columns: 1fr; } }

/* ── MANUFACTURING (dark) ────────────────────────────── */
.lm-mfg {
  padding: 120px 0; background: var(--lm-navy);
  color: #fff; position: relative; overflow: hidden;
  font-family: var(--lm-font-sans);
}
.lm-mfg::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(2,195,255,0.18) 0%, rgba(0,119,255,0) 60%);
  pointer-events: none;
}
.lm-mfg__header { margin-bottom: 64px; max-width: 900px; position: relative; }
.lm-mfg__title {
  font-family: var(--lm-font-display);
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1; letter-spacing: -0.035em; font-weight: 600;
  margin: 0; color: #fff; text-wrap: balance;
}
.lm-mfg__title span {
  font-family: var(--lm-font-sans);
  font-weight: 100;
}
.lm-mfg__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; position: relative;
}
.lm-mfg__visual { position: sticky; top: 100px; }
.lm-mfg__trust-img {
  width: 100%; aspect-ratio: 4/5; object-fit: contain;
  background: transparent; border-radius: var(--lm-radius-lg);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.35));
}
.lm-mfg__image-placeholder {
  position: relative; aspect-ratio: 4/5; border-radius: var(--lm-radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2,195,255,0.15) 0%, rgba(16,32,57,0.4) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 10px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.lm-mfg__image-placeholder svg { opacity: 0.2; }
.lm-mfg__grid-overlay {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(4,1fr);
  gap: 1px; pointer-events: none;
}
.lm-mfg__grid-overlay div { background: rgba(255,255,255,0.04); }
.lm-mfg__label {
  position: absolute; bottom: 16px; left: 16px;
  padding: 6px 12px; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--lm-radius-sm);
  color: rgba(255,255,255,0.6); font-size: 11px;
  font-family: var(--lm-font-mono); letter-spacing: 0.04em; text-transform: uppercase;
}
.lm-mfg__lead {
  font-size: 20px; line-height: 1.5; color: rgba(255,255,255,0.85);
  margin: 0 0 48px;
}
.lm-mfg__stats {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 32px;
  margin-bottom: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.lm-mfg__stat-num {
  font-family: var(--lm-font-display); font-size: 52px; font-weight: 600;
  letter-spacing: -0.03em; line-height: 1; color: #fff;
  margin-bottom: 10px; display: flex; align-items: baseline; gap: 2px;
}
.lm-mfg__stat-num span { font-size: 0.5em; color: var(--lm-accent-a); }
.lm-mfg__stat-label { font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.55); }
.lm-mfg__cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .lm-mfg__grid { grid-template-columns: 1fr; gap: 40px; }
  .lm-mfg__visual { position: static; }
}

/* ── WARRANTY ────────────────────────────────────────── */
.lm-warranty { padding: 140px 0; background: var(--lm-bg); font-family: var(--lm-font-sans); }
.lm-warranty__inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.lm-warranty__visual { display: flex; flex-direction: column; gap: 16px; }
.lm-warranty__img-slot {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--lm-radius-lg);
  border: 1.5px dashed var(--lm-line-strong);
  background: var(--lm-bg-tint);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.lm-warranty__img-slot img,
.lm-warranty__product-img {
  width: 100%; height: 100%; object-fit: contain; padding: 32px;
  background: transparent;
  filter: drop-shadow(0 24px 40px rgba(16,32,57,0.16));
}
.lm-warranty__img-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; opacity: 0.6;
}
.lm-warranty__product-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--lm-fg-soft);
}
@media (max-width: 900px) {
  .lm-warranty__inner { grid-template-columns: 1fr; gap: 40px; }
  .lm-warranty__img-slot { aspect-ratio: 4/3; }
}
.lm-warranty__title {
  font-family: var(--lm-font-display);
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 600;
  margin: 0 0 24px; color: var(--lm-navy); text-wrap: balance;
}
.lm-warranty__title span {
  font-family: var(--lm-font-sans);
  font-weight: 100;
}
.lm-warranty__desc { font-size: 17px; line-height: 1.55; color: var(--lm-fg-dim); margin: 0; }
.lm-warranty__steps { display: flex; flex-direction: column; border-top: 1px solid var(--lm-line); list-style: none; padding: 0; margin: 0; }
.lm-warranty__steps li {
  display: grid; grid-template-columns: 48px 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--lm-line); align-items: start;
}
.lm-warranty__steps .lm-mono { color: var(--lm-accent-b); padding-top: 4px; font-size: 13px; }
.lm-warranty__steps strong {
  display: block; font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--lm-navy); margin-bottom: 6px;
}
.lm-warranty__steps p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--lm-fg-dim); }
@media (max-width: 900px) {
  .lm-warranty__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── CTA ─────────────────────────────────────────────── */
.lm-cta {
  position: relative; padding: 140px 0; background: var(--lm-navy);
  color: #fff; overflow: hidden; font-family: var(--lm-font-sans);
}
.lm-cta__gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 50% 40%, rgba(2,195,255,0.35) 0%, rgba(0,119,255,0.15) 40%, rgba(16,32,57,0) 70%),
    radial-gradient(50% 60% at 30% 100%, rgba(0,119,255,0.25) 0%, rgba(0,119,255,0) 70%);
}
.lm-cta__inner {
  position: relative; text-align: center; max-width: 800px; margin: 0 auto;
}
.lm-cta__inner .lm-section-label { display: flex; justify-content: center; }
.lm-cta__title {
  font-family: var(--lm-font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.035em; font-weight: 600;
  margin: 0 0 24px; color: #fff; text-wrap: balance;
}
.lm-cta__title span {
  font-family: var(--lm-font-sans);
  font-weight: 100;
}
.lm-cta__sub {
  font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.7);
  margin: 0 auto 40px; max-width: 560px;
}
.lm-cta__actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 72px;
}
.lm-cta__tracks {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--lm-radius-lg); overflow: hidden;
  margin-bottom: 0;
}
.lm-cta__track {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 12px;
  transition: background 0.2s;
}
.lm-cta__track:hover { background: rgba(255,255,255,0.08); }
.lm-cta__track-eyebrow {
  font-family: var(--lm-font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.lm-cta__track-title {
  font-size: 20px; font-weight: 600; color: #fff;
  letter-spacing: -0.01em; margin: 0; line-height: 1.2;
  font-family: var(--lm-font-display);
}
.lm-cta__track-desc {
  font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.65); margin: 0; flex: 1;
}
.lm-cta__track-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  font-size: 13px; font-weight: 500; color: var(--lm-accent-a);
  text-decoration: none; transition: gap 0.2s;
}
.lm-cta__track-btn:hover { gap: 12px; }
@media (max-width: 700px) { .lm-cta__tracks { grid-template-columns: 1fr; } }
.lm-cta__channels {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.12); text-align: left;
}
.lm-cta__channel { display: flex; flex-direction: column; gap: 6px; }
.lm-cta__channel .lm-mono { color: rgba(255,255,255,0.5); }
.lm-cta__channel a { font-size: 16px; color: #fff; font-weight: 500; transition: color 0.15s; text-decoration: none; }
.lm-cta__channel a:hover { color: var(--lm-accent-a); }
@media (max-width: 700px) { .lm-cta__channels { grid-template-columns: 1fr; } }

/* ── BANNER SLIDER (estilo card con border-radius) ────── */

/* Wrapper que centra y da padding lateral al banner */
.lm-bs-wrap {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

/* Contenedor principal: card redondeada */
.lm-banner-slider {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 42vw, 520px);
  overflow: hidden;
  border-radius: var(--lm-radius-xl);
  background: #dce8f5;
  font-family: var(--lm-font-sans);
  user-select: none;
}

/* Track: capa que contiene todos los slides apilados */
.lm-bs__track {
  position: absolute;
  inset: 0;
}

/* Slides: todos absolute, stacked — layout split texto/imagen */
.lm-bs__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0s linear 0.55s;
  z-index: 0;
}
.lm-bs__slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.55s ease, visibility 0s linear 0s;
  z-index: 1;
}

/* Columna izquierda: texto */
.lm-bs__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 4vw, 56px);
}

.lm-bs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lm-fg-dim);
  margin-bottom: 16px;
}

.lm-bs__title {
  font-family: var(--lm-font-display);
  font-size: clamp(26px, 3.5vw, 52px);
  line-height: 1.07;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--lm-navy);
  margin: 0 0 16px;
  text-wrap: balance;
}

.lm-bs__sub {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.55;
  color: var(--lm-fg-dim);
  margin: 0 0 28px;
}

/* Columna derecha: imagen */
.lm-bs__img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.lm-bs__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.lm-bs__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--lm-navy);
  background: rgba(16,32,57,0.05);
}

/* ── Arrows ── */
.lm-bs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(16,32,57,0.15);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  color: var(--lm-navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
}
.lm-bs__arrow:hover {
  background: #fff;
  border-color: var(--lm-accent-b);
  color: var(--lm-accent-b);
  transform: translateY(-50%) scale(1.08);
}
.lm-bs__arrow:active { transform: translateY(-50%) scale(0.95); }
.lm-bs__arrow--prev { left: 16px; }
.lm-bs__arrow--next { right: 16px; }

/* ── Dots ── */
.lm-bs__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
  align-items: center;
}
.lm-bs__dot {
  width: 8px !important; height: 8px !important;
  min-width: 8px; min-height: 8px;
  border-radius: 50% !important;
  border: 2px solid rgba(16,32,57,0.3) !important;
  background: transparent !important;
  cursor: pointer;
  padding: 0 !important;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
  display: block;
  box-shadow: none !important;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.lm-bs__dot--active {
  background: var(--lm-navy);
  border-color: var(--lm-navy);
  transform: scale(1.2);
}
.lm-bs__dot:hover:not(.lm-bs__dot--active) {
  border-color: var(--lm-navy);
}

@media (max-width: 760px) {
  .lm-bs__slide { grid-template-columns: 1fr; }
  .lm-bs__img-wrap { display: none; }
  .lm-bs__text { padding: 40px 28px 60px; }
  .lm-bs__arrow { display: none; }
  .lm-banner-slider { min-height: 280px; }
}

/* ── CATEGORIES ─────────────────────────────────────── */
.lm-cats {
  padding: 40px 0 48px;
  background: var(--lm-bg);
  font-family: var(--lm-font-sans);
}
/* Cuando las categorías van pegadas al slider (sin padding-top extra) */
.lm-bs-cats {
  padding-top: 32px;
  border-top: 1px solid var(--lm-line);
}
.lm-cats__label {
  text-align: center;
  color: var(--lm-fg-soft);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

/* ── Bento grid 2×4 ── */
.lm-cats__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Tarjeta individual */
.lm-cat-card {
  position: relative;
  border-radius: var(--lm-radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  background: var(--lm-bg-tint);
  border: 1px solid var(--lm-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lm-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(16,32,57,0.12);
}

.lm-cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lm-cat-card__solid {
  position: absolute;
  inset: 0;
}
.lm-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,32,57,0.85) 100%);
}
.lm-cat-card__label {
  position: relative;
  z-index: 2;
  padding: 20px 16px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 900px) {
  .lm-cats__bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lm-cats__bento { grid-template-columns: 1fr; }
}

/* ── CATALOG FILTERS ─────────────────────────────────── */
.lm-cf {
  padding: 20px 0 24px;
  background: var(--lm-bg);
  border-bottom: 1px solid var(--lm-line);
  font-family: var(--lm-font-sans);
}
.lm-cf--sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--lm-line);
}
.lm-cf__header { margin-bottom: 20px; }
.lm-cf__header .lm-section-label {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.lm-cf__title {
  font-family: var(--lm-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 600;
  margin: 0; color: var(--lm-navy); text-wrap: balance;
}
.lm-cf__title span {
  font-family: var(--lm-font-sans);
  font-weight: 100;
}
.lm-cf__bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.lm-cf__bar-label {
  color: var(--lm-fg-soft); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.lm-cf__pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.lm-cf__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--lm-radius-pill);
  font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  color: var(--lm-fg-dim); background: transparent;
  text-decoration: none; white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
.lm-cf__pill:hover {
  color: var(--lm-navy);
  background: var(--lm-bg-tint);
  padding-left: 20px;
}
.lm-cf__pill--active {
  color: var(--lm-navy);
  font-weight: 600;
  background: var(--lm-bg-tint);
}
.lm-cf__pill--active:hover { color: var(--lm-accent-b); }
.lm-cf__pill--all .lm-dot { flex-shrink: 0; }

/* Separador visual antes del buscador */
.lm-cf__search {
  display: flex; align-items: center;
  border: 1.5px solid var(--lm-line-strong);
  border-radius: var(--lm-radius-pill);
  overflow: hidden; background: var(--lm-bg-tint);
  margin-top: 12px; width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lm-cf__search:focus-within {
  border-color: var(--lm-accent-b);
  box-shadow: 0 0 0 3px rgba(0,119,255,0.10);
}
.lm-cf__search-input {
  border: none; outline: none; background: transparent; margin-bottom: 0;
   font-size: 13px;
  color: var(--lm-fg); font-family: var(--lm-font-sans); flex: 1; width: 0;
}
.lm-cf__search-input::placeholder { color: var(--lm-fg-soft); }
.lm-cf__search-btn {
  border: none; background: transparent; padding: 9px 14px;
  cursor: pointer; color: var(--lm-fg-dim); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s ease; margin-bottom: 0;
}
.lm-cf__search-btn:hover { color: var(--lm-accent-b); }
@media (max-width: 768px) {
  .lm-cf__pill { font-size: 12px; }
}

/* ── ENTRANCE ANIMATIONS ─────────────────────────────── */
.lm-fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.lm-fade.lm-visible { opacity: 1; transform: none; }
.lm-fade-d1 { transition-delay: 0.10s; }
.lm-fade-d2 { transition-delay: 0.20s; }
.lm-fade-d3 { transition-delay: 0.30s; }
