/* === VARIABLES OVERRIDE === */

.lp__fluestermatte {
  --main-dark: #1a1a1a;
  --bde-headings-color: #1a1a1a;
}

.lp_fluestermatte p,
.lp_fluestermatte h1,
.lp_fluestermatte h2,
.lp_fluestermatte h3 {
  color: var(--main-dark);
}

/* === FONT-SIZES === */

.lp__fluestermatte p {
  font-size: var(--font-size__regular);
  font-weight: var(--font-weight__regular) !important;
}

.lp__fluestermatte h1,
.lp__fluestermatte .txt-large {
  font-size: calc(var(--font-size__x-large) * 1.2 );
  line-height: 1.1;
  }
  
h2 {
  font-size: calc(var(--font-size__large) * 1.2 );
  }

h3 {
  font-size: calc(var(--font-size__medium-large) * 1.4 );
  font-weight: var(--font-weight__black) !important;
  }

.lp__fluestermatte .hero,
.lp__fluestermatte .hero-product {
    min-height: 100svh;
}

.lp__fluestermatte .hero {
    background: linear-gradient(
        180deg,
        #5fb1d1 0%,
        #7cbedb 22%,
        #a8c8df 48%,
        #d6e3eb 72%,
        #f1f1f1 88%,
        #ffffff 100%
        );
}

.lp__fluestermatte .hero h1,
.lp__fluestermatte .hero p {
  text-shadow: 0 4px 32px rgba(24, 53, 80, 0.35);
}

.lp__fluestermatte .hero video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: bottom 30%;
      pointer-events: none;
      opacity: clamp(0, calc(1 - var(--sky-exit, 0) * 1.6), 1);
      transition: opacity 220ms linear;
      mask-image: linear-gradient(
        180deg,
        #000 0%,
        #000 55%,
        rgba(0, 0, 0, 0.92) 72%,
        rgba(0, 0, 0, 0.6) 86%,
        rgba(0, 0, 0, 0.18) 96%,
        transparent 100%
      );
      -webkit-mask-image: linear-gradient(
        180deg,
        #000 0%,
        #000 55%,
        rgba(0, 0, 0, 0.92) 72%,
        rgba(0, 0, 0, 0.6) 86%,
        rgba(0, 0, 0, 0.18) 96%,
        transparent 100%
      );
    }

.lp__fluestermatte .hero-interlude {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 254, 252, 0.94) 25%,
        rgba(253, 246, 234, 1) 50%,
        rgba(250, 238, 220, 1) 75%,
        rgba(246, 228, 206, 1) 90%,
        rgba(241, 218, 196, 1) 100%
      );
}

.lp__fluestermatte .hero-product video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 72% center;
      background: #ffffff;
      mask-image: linear-gradient(
        180deg,
        #000 0%,
        #000 58%,
        rgba(0, 0, 0, 0.94) 72%,
        rgba(0, 0, 0, 0.7) 84%,
        rgba(0, 0, 0, 0.35) 93%,
        rgba(0, 0, 0, 0.08) 98%,
        transparent 100%
      );
      -webkit-mask-image: linear-gradient(
        180deg,
        #000 0%,
        #000 58%,
        rgba(0, 0, 0, 0.94) 72%,
        rgba(0, 0, 0, 0.7) 84%,
        rgba(0, 0, 0, 0.35) 93%,
        rgba(0, 0, 0, 0.08) 98%,
        transparent 100%
      );
    }

/* === TILES === */

.tile__main {
  color: var(--main-light);
  padding: var(--grid__x-small);
  border-radius: var(--radius__medium);
  background: var(--brand-color-main);
  box-shadow: 0 16px 48px rgba(188, 12, 39, 0.18);
}

.tile__main p {
  font-size: var(--font-size__large) !important;
  font-weight: var(--font-weight__black) !important;
}

.tile__light {
  position: relative;
  width: 100%;
  padding: calc(var(--grid__x-small) / 2) var(--grid__x-small);
  border: 1px solid rgba(220, 220, 220, 0.78);
  border-radius: var(--radius__medium);
  background: var(--main-lightest);
  font-size: var(--font-size__small-reg);
  transition: all 350ms ease-in-out;
}

.tile__light:hover {
  border: 1px solid var(--brand-color-main);
}

.tile__dark {
  position: relative;
  width: 100%;
  padding: calc(var(--grid__x-small) / 2) var(--grid__x-small);
  border: 1px solid var(--main-medium);
  border-radius: var(--radius__medium);
  background: var(--main-darkest);
  transition: all 350ms ease-in-out;
}

.tile__dark:hover {
  border: 1px solid var(--brand-color-main);
}

.bullet__light {
  position: relative;
  width: 100%;
  padding: calc(var(--grid__x-small) / 2) var(--grid__x-small);
  border: 1px solid rgba(220, 220, 220, 0.78);
  border-radius: var(--radius__medium);
  background: var(--main-lightest);
  font-size: var(--font-size__small-reg);
}

.bullet__light::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 20px;
  color: var(--brand-color-main);
  font-size: var(--font-size__regular);
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  }

.bullet__light > * {
  margin-left: var(--font-size__regular);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--grid__x-small) / 2 );
  font-size: var(--font-size__small);
  color: var(--brand-color-main);
  font-weight: var(--font-weight__bold);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: var(--brand-color-main);
}