/* ════════════════════════════════════════════════════════
   Finbase · LANDING PIZARRA — extensión de lapizarra.css
   Solo añade los estilos específicos de la home pública en
   pizarra (navbar, hero, secciones, grids).
   ════════════════════════════════════════════════════════ */

body.board-landing {
  padding-bottom: 0;
}

/* ─── NAV PIZARRA ─── */
.board-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 18px 22px 14px;
  background: linear-gradient(180deg, rgba(239,237,227,0.95) 0%, rgba(239,237,227,0.85) 100%);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}
.board-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 12px 8px 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(8, 48, 76, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(8, 48, 76, 0.06);
  max-width: 920px;
  width: 100%;
}
.board-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.board-nav-brand svg {
  width: 28px; height: 28px;
}
.board-nav-brand span {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.board-nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.board-nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.board-nav-links a:hover { color: var(--ink); }
.board-nav-cta {
  font-family: var(--font-hand);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--ink);
  padding: 8px 18px 9px;
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.board-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(8, 48, 76, 0.18);
}
@media (max-width: 720px) {
  .board-nav-links { display: none; }
  .board-nav { grid-template-columns: auto 1fr; }
}

/* ─── HERO ─── */
.land-hero {
  text-align: center;
  padding: 80px 22px 60px;
  max-width: 860px;
  margin: 0 auto;
}
/* Eyebrow = etiqueta de sección con efecto rotulador / highlighter:
   texto sans-caps + bloque amarillo translúcido detrás con bordes
   irregulares (filter rough). El gesto típico de un profe que resalta
   la categoría con un marcador en la pizarra. */
.land-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
  padding: 6px 16px 7px;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 0;
  transform: rotate(-1.2deg);
}
/* Bloque highlighter detrás del texto — bordes irregulares con filter rough */
.land-eyebrow::before {
  content: "";
  position: absolute;
  inset: -1px -6px 0px -6px;
  background: rgba(255, 217, 79, 0.58);
  z-index: -1;
  filter: url(#rough);
  border-radius: 2px;
}
.land-h1 {
  font-family: var(--font-sans);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.land-h1-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.1em;
  color: var(--mk-coral);
  letter-spacing: -0.015em;
  display: inline-block;
}
.land-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 36px;
}
.land-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.land-meta {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}
.land-meta-dot { color: var(--mk-coral); margin: 0 4px; font-weight: 700; }

/* ─── SECCIÓN GENÉRICA ─── */
.land-section {
  padding: 80px 22px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.land-h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.land-h2-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.1em;
  color: var(--mk-coral);
  letter-spacing: -0.015em;
  display: inline-block;
}
.land-section-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 50px;
}

/* ─── MOMENTOS · grid de polaroids ─── */
.land-momentos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 26px;
  padding: 30px 0 0;
}
@media (max-width: 1000px) {
  .land-momentos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .land-momentos { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
}
@media (max-width: 480px) {
  .land-momentos { grid-template-columns: 1fr; gap: 36px; }
}
.land-poly {
  /* Hereda de .polaroid (definida en lapizarra.css). Solo añadimos rotación
     pseudo-aleatoria por nth-child para variedad orgánica. */
}
.land-poly:nth-child(8n+1) { transform: rotate(-2.2deg); }
.land-poly:nth-child(8n+2) { transform: rotate(1.4deg); }
.land-poly:nth-child(8n+3) { transform: rotate(-0.8deg); }
.land-poly:nth-child(8n+4) { transform: rotate(2deg); }
.land-poly:nth-child(8n+5) { transform: rotate(-1.6deg); }
.land-poly:nth-child(8n+6) { transform: rotate(1deg); }
.land-poly:nth-child(8n+7) { transform: rotate(-2deg); }
.land-poly:nth-child(8n+8) { transform: rotate(1.8deg); }
/* Hover péndulo — endereza el papel, mantiene la curva overshoot heredada */
.land-poly:hover {
  transform: rotate(0deg) !important;
}

/* ─── Mecánica scatter de fotos ─────────────────────────
   Las polaroids del grid SE QUEDAN EN SU SITIO desde el inicio (con marco,
   cinta, título). Solo 3 polaroids son "destino": llevan placeholder vacío
   en su .polaroid-img mientras la foto correspondiente está flotando arriba
   en el hero como un .land-floater. Al hacer scroll, el floater baja y
   encaja exactamente sobre el .polaroid-img destino → la foto se materializa
   con un crossfade invisible (es la misma URL, perfectamente alineada). */

/* Polaroid "destino" — la imagen interna se trata como placeholder */
.land-poly.is-target .polaroid-img {
  background-color: var(--paper-soft);
  transition: opacity 0.35s ease;
  position: relative;
}
.land-poly.is-target.has-no-photo .polaroid-img {
  background-image: none !important;
}
/* Sutil indicación de "aquí caerá una foto" mientras está vacío */
.land-poly.is-target.has-no-photo .polaroid-img::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1.5px dashed rgba(8, 48, 76, 0.15);
  border-radius: 4px;
  pointer-events: none;
}

/* Foto flotante en el hero — tiene exactamente el tamaño y posición base
   del .polaroid-img destino. El JS controla su transform para moverla. */
.land-floater {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  /* Sombra suave (igual que .moment-card del institucional) — sin "peso" */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
/* Mobile: el JS skip setupMomentsScatter en <=720px → las polaroids se
   quedan en su sitio con su foto desde el inicio, sin floaters flotando
   en el hero. */

/* ─── CALCULADORAS · grid de post-its ─── */
.land-calculadoras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  padding: 30px 0 0;
}
@media (max-width: 720px) {
  .land-calculadoras { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .land-calculadoras { grid-template-columns: 1fr; }
}
.land-calc {
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  /* Hereda de .postit; sobrescribimos el contenido para esta variante */
}
.land-calc[data-c="yellow"] { background-color: var(--postit-yellow); }
.land-calc[data-c="pink"]   { background-color: var(--postit-pink); }
.land-calc[data-c="blue"]   { background-color: var(--postit-blue); }
.land-calc[data-c="green"]  { background-color: var(--postit-green); }
.land-calc:nth-child(6n+1) { transform: rotate(-1.8deg); }
.land-calc:nth-child(6n+2) { transform: rotate(1.2deg); }
.land-calc:nth-child(6n+3) { transform: rotate(-0.6deg); }
.land-calc:nth-child(6n+4) { transform: rotate(1.6deg); }
.land-calc:nth-child(6n+5) { transform: rotate(-1.2deg); }
.land-calc:nth-child(6n+6) { transform: rotate(0.8deg); }
/* Hover péndulo — endereza el post-it. La transición ya viene heredada
   de .postit (curva overshoot 0.65s al salir, 0.4s al entrar con delay). */
.land-calc:hover {
  transform: rotate(0deg) !important;
}

.land-calc h3 {
  font-family: var(--font-hand);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.05;
}
.land-calc p {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

/* ─── CÓMO FUNCIONA · 4 notepads ─── */
.land-pasos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  padding: 30px 0 0;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .land-pasos { grid-template-columns: 1fr; gap: 40px; }
}
.land-paso {
  margin: 0 !important;
  max-width: 100% !important;
  text-align: left;
  position: relative;
  padding-top: 56px !important;
}
.land-paso-num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--font-hand);
  font-size: 56px;
  font-weight: 700;
  color: var(--mk-coral);
  line-height: 0.85;
  opacity: 0.85;
}
.land-paso[data-tape="indigo"] .land-paso-num { color: var(--mk-indigo); }
.land-paso[data-tape="mint"]   .land-paso-num { color: var(--mk-mint); }
.land-paso[data-tape="amber"]  .land-paso-num { color: var(--mk-amber); }
.land-paso h3 {
  font-family: var(--font-hand);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  line-height: 1.05;
  color: var(--ink-pen);
}
.land-paso p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ════════════════════════════════════════════════════════
   CONFIANZA · 2 cards de papelería distintas para no aburrir
   - Card 1: legal pad amarillo con margen rojo + cinta indigo
   - Card 2: notepad blanco rayado + cinta coral + sellos rojos
   - Eyebrow "Confianza" como cinta washi grande con texto
   - Disclaimer como nota P.D. en Caveat al final
   ════════════════════════════════════════════════════════ */
.land-trust-section { position: relative; }

/* Eyebrow = cinta washi con texto sobreimpreso */
.land-trust-section .land-eyebrow { display: none; } /* ocultar el eyebrow plano */
.land-trust-eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 auto 36px;
  padding: 8px 36px 9px;
  transform: rotate(-1.5deg);
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.land-trust-eyebrow-tape {
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 71, 0.45);
  border-left: 1px solid rgba(255, 107, 71, 0.55);
  border-right: 1px solid rgba(255, 107, 71, 0.55);
  border-radius: 1px;
  z-index: -1;
  box-shadow: 0 1px 2px rgba(8, 48, 76, 0.10);
}
.land-trust-eyebrow-text {
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* Grid de 2 cards */
.land-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  text-align: left;
  max-width: 920px;
  margin: 0 auto 56px;
}
@media (max-width: 720px) {
  .land-trust { grid-template-columns: 1fr; gap: 36px; }
}

/* Block común — sin hover porque NO son links (son contenido informativo) */
.land-trust-block {
  position: relative;
  padding: 36px 32px 30px 56px;
  box-shadow:
    0 1px 1px rgba(8, 48, 76, 0.06),
    0 14px 32px -10px rgba(8, 48, 76, 0.18);
}
.land-trust-block h3 {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  line-height: 1.1;
  color: var(--ink-pen);
}
.land-trust-block p {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

/* CARD 1 · LEGAL PAD AMARILLO con margen rojo */
.land-trust-block--legal {
  background:
    /* Línea vertical roja del margen a 38px del borde izq */
    linear-gradient(to right,
      transparent 0,
      transparent 36px,
      rgba(220, 60, 60, 0.55) 36px,
      rgba(220, 60, 60, 0.55) 37.5px,
      transparent 37.5px),
    /* Líneas horizontales tenues paso 28px */
    repeating-linear-gradient(to bottom,
      transparent 0,
      transparent 27px,
      rgba(150, 100, 50, 0.14) 27px,
      rgba(150, 100, 50, 0.14) 28px),
    /* Papel amarillo legal-pad */
    linear-gradient(180deg, #FFF8C4 0%, #FFEC8A 100%);
  transform: rotate(-0.5deg);
  border-radius: 2px;
}
/* Perforación sutil arriba (línea de troquel) */
.land-trust-block--legal .land-trust-perforation {
  position: absolute;
  top: 8px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background-image: linear-gradient(to right,
    rgba(150, 100, 50, 0.35) 0,
    rgba(150, 100, 50, 0.35) 4px,
    transparent 4px,
    transparent 8px);
  background-size: 8px 1.5px;
  pointer-events: none;
}

/* CARD 2 · NOTEPAD BLANCO rayado */
.land-trust-block--ruled {
  background:
    /* Línea vertical roja del margen a 38px */
    linear-gradient(to right,
      transparent 0,
      transparent 36px,
      rgba(220, 60, 60, 0.45) 36px,
      rgba(220, 60, 60, 0.45) 37.5px,
      transparent 37.5px),
    /* Líneas horizontales azules paso 28px */
    repeating-linear-gradient(to bottom,
      transparent 0,
      transparent 27px,
      rgba(70, 120, 180, 0.22) 27px,
      rgba(70, 120, 180, 0.22) 28px),
    #FFFFFF;
  transform: rotate(-0.3deg);
  border-radius: 2px;
}

/* Cinta washi diagonal en la esquina superior */
.land-trust-tape {
  position: absolute;
  top: -10px;
  left: 30px;
  width: 84px;
  height: 18px;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(8, 48, 76, 0.10);
  pointer-events: none;
  transform: rotate(-6deg);
}
.land-trust-block[data-tape="indigo"] .land-trust-tape {
  background: rgba(99, 102, 241, 0.42);
  border-left: 1px solid rgba(99, 102, 241, 0.50);
  border-right: 1px solid rgba(99, 102, 241, 0.50);
}
.land-trust-block[data-tape="coral"] .land-trust-tape {
  background: rgba(255, 107, 71, 0.42);
  border-left: 1px solid rgba(255, 107, 71, 0.50);
  border-right: 1px solid rgba(255, 107, 71, 0.50);
  left: auto;
  right: 30px;
  transform: rotate(5deg);
}

/* Lista de checks dibujados a mano */
.land-trust-checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.land-trust-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.land-trust-checks li strong {
  font-weight: 600;
  color: var(--ink);
}
.land-trust-check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: -1px;
  /* Cada check con micro-rotación distinta para que no se vean clonados */
}
.land-trust-checks li:nth-child(1) .land-trust-check { transform: rotate(-3deg); }
.land-trust-checks li:nth-child(2) .land-trust-check { transform: rotate(2deg); }
.land-trust-checks li:nth-child(3) .land-trust-check { transform: rotate(-1.5deg); }

/* Disclaimer como nota P.D. */
.land-trust-finprint {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  padding: 0 32px;
  position: relative;
}
.land-trust-pd {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-right: 6px;
  display: inline-block;
  transform: rotate(-2deg);
}
.land-trust-finprint strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 720px) {
  .land-trust-block { padding: 30px 24px 26px 50px; }
  .land-trust-finprint { padding: 0 22px; }
}

/* ════════════════════════════════════════════════════════
   MINI-CTAs intermedios — post-its pequeños alineados a un lado
   al final de Momentos y Calculadoras. Refuerzan conversión sin
   romper el flujo (scrollean con el wall, no son fixed).
   ════════════════════════════════════════════════════════ */
.land-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  margin: 28px 0 0 auto;
  padding: 10px 22px 11px;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(180deg, #FFF59D 0%, #FFE873 100%);
  border-radius: 3px;
  line-height: 1;
  transform: rotate(-2.5deg);
  transform-origin: 50% 0%;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 1px 1px rgba(8, 48, 76, 0.08),
    0 8px 16px -6px rgba(8, 48, 76, 0.22);
}
/* Variante alineada a la izquierda */
.land-mini-cta--left { margin: 28px auto 0 0; transform: rotate(2deg); }
.land-mini-cta:hover { transform: rotate(0deg) translateY(-2px); }
/* Cinta diagonal en la esquina superior — color según data-tape */
.land-mini-cta-tape {
  position: absolute;
  top: -7px;
  width: 38px;
  height: 14px;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(8, 48, 76, 0.10);
  transform: rotate(22deg);
  pointer-events: none;
}
.land-mini-cta[data-tape="coral"] .land-mini-cta-tape {
  right: 12px;
  background: rgba(255, 107, 71, 0.50);
  border-left: 1px solid rgba(255, 107, 71, 0.55);
  border-right: 1px solid rgba(255, 107, 71, 0.55);
}
.land-mini-cta[data-tape="indigo"] .land-mini-cta-tape {
  right: 12px;
  background: rgba(99, 102, 241, 0.50);
  border-left: 1px solid rgba(99, 102, 241, 0.55);
  border-right: 1px solid rgba(99, 102, 241, 0.55);
  transform: rotate(-22deg);
}
.land-mini-cta-arrow {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-top: -2px;
}

/* Sección con mini-CTA al final → necesita display flex/block para alinear */
.land-section .land-mini-cta { display: flex; width: max-content; max-width: 100%; }
@media (max-width: 720px) {
  .land-mini-cta {
    font-size: 19px;
    padding: 9px 18px 10px;
    margin: 22px auto 0 !important;
    transform: rotate(-1.5deg);
  }
  .land-mini-cta--left { transform: rotate(1.5deg); }
}

/* ─── CTA FINAL ─── */
.land-cta-final {
  text-align: center;
  padding: 80px 22px;
  max-width: 760px;
  margin: 0 auto;
}
.land-cta-final .btn-board { margin-top: 16px; }

/* ════════════════════════════════════════════════════════
   FOOTER · Hoja arrancada con cinta (espejo del navbar)
   Cierra la página con el mismo lenguaje del header.
   ════════════════════════════════════════════════════════ */
.land-footer {
  padding: 60px 30px 40px;
  display: flex;
  justify-content: center;
}
/* Wrapper que contiene papel + cinta. La cinta es hermana del papel
   para que NO le afecte el clip-path del papel y pueda sobresalir
   libremente al wall. */
.land-footer-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
}
.land-footer-paper {
  position: relative;
  width: 100%;
  padding: 32px 44px 28px;
  background:
    /* Líneas horizontales azules cuaderno */
    repeating-linear-gradient(to bottom,
      transparent 0,
      transparent 27px,
      rgba(70, 120, 180, 0.18) 27px,
      rgba(70, 120, 180, 0.18) 28px),
    #FFFFFF;
  box-shadow:
    0 1px 0 rgba(8, 48, 76, 0.04),
    0 14px 28px -12px rgba(8, 48, 76, 0.18);
  /* Bordes top y bottom desgarrados (espejo del navbar) */
  clip-path: polygon(
    0% 4%,
    3% 1%, 6% 3%, 9% 0%, 13% 2%, 17% 0%, 21% 3%, 25% 1%, 29% 4%, 33% 0%,
    37% 2%, 41% 0%, 45% 3%, 49% 1%, 53% 4%, 57% 0%, 61% 2%, 65% 1%,
    69% 4%, 73% 0%, 77% 3%, 81% 1%, 85% 4%, 89% 0%, 93% 2%, 96% 0%, 99% 3%,
    100% 0%, 100% 100%,
    97% 96%, 93% 100%, 89% 96%, 85% 99%, 81% 95%, 77% 100%, 73% 96%, 69% 99%,
    65% 95%, 61% 100%, 57% 96%, 53% 99%, 49% 95%, 45% 100%, 41% 96%, 37% 99%,
    33% 95%, 29% 100%, 25% 96%, 21% 99%, 17% 95%, 13% 100%, 9% 96%, 5% 99%, 2% 95%,
    0% 96%
  );
  transform: rotate(0.4deg); /* espejo del navbar -1deg, ligero contrario */
}

/* Cinta washi diagonal en la esquina sup-derecha (espejo del navbar
   que la tiene en la sup-izquierda). Hija del frame, no del paper →
   no se recorta con el clip-path del papel. */
.land-footer-tape {
  position: absolute;
  top: -2px;
  right: -22px;
  width: 88px;
  height: 18px;
  background: rgba(99, 102, 241, 0.42);
  border-left: 1px solid rgba(99, 102, 241, 0.50);
  border-right: 1px solid rgba(99, 102, 241, 0.50);
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(8, 48, 76, 0.10);
  transform: rotate(32deg);
  pointer-events: none;
  z-index: 3;
}

.land-footer-brand {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 22px;
  padding-bottom: 8px;
}
.land-footer-wordmark {
  position: relative;
  display: inline-block;
  letter-spacing: 0.005em;
  color: var(--ink-pen);
}
.land-footer-underline {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -10px;
  width: calc(100% + 4px);
  height: 10px;
  overflow: visible;
}
.land-footer-pd {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-right: 6px;
  display: inline-block;
  transform: rotate(-2deg);
}
.land-footer-disclaimer {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 0 12px;
  text-align: left;
}
.land-footer-disclaimer:last-child { margin-bottom: 0; }
.land-footer-disclaimer strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) {
  .land-footer-paper { padding: 28px 24px 24px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .land-poly, .land-calc, .land-paso { transition: none; transform: none !important; }
}
