:root {
  --crimson: #b01224;
  --crimson-dark: #8a0f1c;
  --gold: #d8b464;
  --gold-soft: rgba(216, 180, 100, 0.22);
  --gold-faint: rgba(216, 180, 100, 0.12);
  --cool-white: #f7f7f4;
  --white: #ffffff;
  --ink: #2c3036;
  --ink-soft: rgba(44, 48, 54, 0.58);
  --shadow: 0 28px 90px rgba(32, 35, 41, 0.12);
  --shadow-soft: 0 18px 54px rgba(32, 35, 41, 0.10);
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 78% 20%, rgba(0,109,255,.05), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, var(--cool-white) 54%, #edf1f4 100%);
}
.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.page::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(44,48,54,0.07);
  pointer-events: none;
}
.sheet {
  position: relative;
  width: min(1360px, calc(100vw - 48px));
  min-height: min(760px, calc(100vh - 48px));
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.70));
  border: 1px solid rgba(44,48,54,0.08);
  box-shadow: var(--shadow);
}
.wing {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(239,242,246,0.97) 46%, rgba(231,236,241,0.98) 100%);
}
.wing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(122deg, transparent 0 22%, rgba(255,255,255,0.90) 22.2% 24.0%, transparent 24.2%),
    linear-gradient(122deg, transparent 0 47%, rgba(44,48,54,0.070) 47.1% 47.32%, transparent 47.42%),
    linear-gradient(156deg, transparent 0 72%, rgba(44,48,54,0.058) 72.1% 72.30%, transparent 72.40%),
    linear-gradient(0deg, transparent 0 84%, rgba(44,48,54,0.040) 84.1% 84.28%, transparent 84.40%);
  opacity: .96;
}
.wing::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8px 8px, rgba(120,128,138,.36) 0 1.45px, transparent 1.65px),
    radial-gradient(circle at 8px 8px, rgba(255,255,255,.58) 0 .52px, transparent .72px);
  background-size: 36px 36px, 36px 36px;
  background-position: 18px 16px, 18px 16px;
  mask-image: linear-gradient(150deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.16) 42%, transparent 72%);
  opacity: .95;
}
.header {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 6;
  width: max-content;
}
.header::after {
  content: "";
  display: block;
  margin-top: 12px;
  width: clamp(260px, 34vw, 470px);
  max-width: 100%;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--crimson-dark), var(--crimson)) left center / 68% 2px no-repeat,
    linear-gradient(90deg, rgba(216, 180, 100, 0.80), var(--gold)) right center / 24% 2px no-repeat;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}
.brand-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-logo-full {
  width: clamp(190px, 20vw, 255px);
  height: auto;
  display: block;
  object-fit: contain;
}

.partner-link {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 6;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.partner-copy {
  font-size: clamp(0.78rem, 0.95vw, 0.98rem);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.03em;
  color: rgba(44,48,54,0.66);
  white-space: nowrap;
}
.partner-link img {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  display: block;
  object-fit: contain;
}
.brand-name {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.hero {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 290px;
  z-index: 5;
  width: min(780px, calc(100% - 120px));
  text-align: center;
}
.hero-title {
  margin: 0;
  color: rgb(164, 51, 39);
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: .90;
  font-weight: 320;
  letter-spacing: -0.075em;
}
.gold-rule {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.gold-rule.top { margin-bottom: 18px; }
.gold-rule.bottom { margin-top: 18px; }
.gold-rule .line {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: min(300px, 26vw);
}
.gold-rule .line.short { width: min(140px, 14vw); }
.plane-unit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}
.plane-unit .plane {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}
.plane-unit .trail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.plane-unit .trail span {
  display: block;
  width: 24px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--gold);
  opacity: .96;
}
.badge {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 7;
}
.swiss {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(44,48,54,0.06);
  box-shadow: 0 10px 28px rgba(44,48,54,0.08);
  backdrop-filter: blur(10px);
  color: rgba(44,48,54,0.60);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}
.swiss-mark {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}
.mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(34%, 258px);
  z-index: 3;
  overflow: hidden;
}
.mountains::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.72) 26%, rgba(255,255,255,0.26) 52%, transparent 84%);
  z-index: 2;
  pointer-events: none;
}
.mountains::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: -26px;
  height: 132px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.88), rgba(255,255,255,0.48) 28%, rgba(255,255,255,0.14) 62%, transparent 100%);
  filter: blur(14px);
  z-index: 3;
  pointer-events: none;
}
.mountain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  display: block;
  filter: saturate(0.74) contrast(0.92) brightness(1.12);
}
@media (max-width: 760px) {
  body { overflow: auto; }
  .page { padding: 14px; }
  .sheet {
    width: calc(100vw - 28px);
    min-height: calc(100vh - 28px);
    border-radius: 22px;
  }
  .header { top: 22px; left: 22px; right: 22px; width: auto; }
  .brand { gap: 10px; }
  .brand-logo { width: 48px; height: 48px; }

  .partner-link {
    top: 92px;
    right: 22px;
    height: 60px;
    gap: 8px;
    align-items: center;
  }
  .partner-copy {
    max-width: 76px;
    font-size: 0.62rem;
    line-height: 1.05;
    text-align: right;
    white-space: normal;
    letter-spacing: -0.015em;
  }
  .partner-link img {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }
  .brand-name { font-size: clamp(1.34rem, 6.6vw, 1.55rem); }
  .hero {
    width: calc(100% - 40px);
    bottom: 240px;
  }
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.6rem);
  }
  .gold-rule { gap: 10px; }
  .gold-rule .line { width: min(140px, 24vw); }
  .gold-rule .line.short { width: min(80px, 16vw); }
  .plane-unit .trail span { width: 14px; }
  .badge { right: 14px; bottom: 12px; }
  .swiss {
    font-size: 0.72rem;
    gap: 8px;
    padding: 8px 11px 8px 12px;
    letter-spacing: 0.12em;
  }
  .mountains { height: min(28%, 210px); }
}

@media (max-width: 420px) {
  .brand-name { font-size: clamp(1.26rem, 6.2vw, 1.42rem); }
  .partner-link {
    top: 88px;
    right: 18px;
    height: 56px;
    gap: 7px;
  }
  .partner-copy {
    max-width: 68px;
    font-size: 0.58rem;
  }
  .partner-link img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
}

    
.v1 .hero { bottom: 286px; }
.v1 .gold-rule.top .line { width: min(250px, 24vw); }
.v1 .gold-rule.bottom .line { width: min(250px, 24vw); }
.v1 .wing::after { opacity: 1; }
.v1 .mountains::after { height: 146px; filter: blur(16px); }

  
/* Monochrome Technical Background – Variante 5: Topology Field */
body {
  background:
    linear-gradient(140deg, #fcfcfb 0%, #f3f4f4 50%, #e8eaeb 100%);
}
.page { isolation: isolate; }
.sheet { z-index: 2; }
.page::before {
  z-index: 1;
  border-color: rgba(24,28,32,0.070);
}
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .58;
  background:
    repeating-radial-gradient(ellipse at 12% 24%, transparent 0 22px, rgba(24,28,32,.045) 22px 23px, transparent 23px 46px),
    repeating-radial-gradient(ellipse at 86% 74%, transparent 0 26px, rgba(24,28,32,.040) 26px 27px, transparent 27px 52px),
    linear-gradient(90deg, transparent 0 49.9%, rgba(24,28,32,.040) 49.9% 50.1%, transparent 50.1% 100%),
    linear-gradient(0deg, transparent 0 49.9%, rgba(24,28,32,.036) 49.9% 50.1%, transparent 50.1% 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 310px, rgba(0,0,0,.40) 490px, rgba(0,0,0,.92) 100%);
}


/* Responsive orientation fix – prevents header, partner logo and hero overlaps on phones in portrait and landscape. */
@media (max-width: 760px) {
  .v1 .hero {
    bottom: 240px;
  }
}

@media (max-width: 420px) {
  .v1 .hero {
    bottom: 228px;
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  body {
    overflow: auto;
  }

  .page {
    padding: 14px;
  }

  .sheet {
    width: calc(100vw - 28px);
    min-height: max(430px, calc(100vh - 28px));
    border-radius: 22px;
  }

  .header {
    top: 22px;
    left: 22px;
    width: max-content;
    max-width: calc(100% - 250px);
  }

  .header::after {
    margin-top: 10px;
    width: min(360px, 34vw);
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: clamp(1.22rem, 3.2vw, 1.82rem);
    letter-spacing: -0.055em;
  }

  .partner-link {
    top: 22px;
    right: 22px;
    height: 64px;
    gap: 10px;
  }

  .partner-copy {
    max-width: 140px;
    font-size: clamp(0.68rem, 1.75vw, 0.86rem);
    line-height: 1.05;
    text-align: right;
    white-space: normal;
    letter-spacing: -0.02em;
  }

  .partner-link img {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .v1 .hero {
    bottom: clamp(132px, 31vh, 176px);
    width: min(620px, calc(100% - 96px));
  }

  .hero-title {
    font-size: clamp(2.25rem, 11vh, 4.15rem);
    line-height: .88;
  }

  .gold-rule.top {
    margin-bottom: 9px;
  }

  .gold-rule.bottom {
    margin-top: 9px;
  }

  .gold-rule .line {
    width: min(220px, 20vw);
  }

  .gold-rule .line.short {
    width: min(96px, 10vw);
  }

  .mountains {
    height: min(30%, 150px);
  }

  .badge {
    right: 14px;
    bottom: 12px;
  }

  .swiss {
    font-size: 0.72rem;
    gap: 8px;
    padding: 8px 11px 8px 12px;
    letter-spacing: 0.12em;
  }
}

@media (orientation: landscape) and (max-height: 480px) {
  .sheet {
    min-height: max(410px, calc(100vh - 28px));
  }

  .header {
    top: 18px;
    left: 18px;
    max-width: calc(100% - 214px);
  }

  .header::after {
    margin-top: 8px;
    width: min(330px, 32vw);
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: clamp(1.10rem, 3vw, 1.55rem);
  }

  .partner-link {
    top: 18px;
    right: 18px;
    height: 56px;
    gap: 8px;
  }

  .partner-copy {
    max-width: 112px;
    font-size: clamp(0.62rem, 1.6vw, 0.76rem);
  }

  .partner-link img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .v1 .hero {
    bottom: clamp(118px, 29vh, 150px);
    width: min(540px, calc(100% - 88px));
  }

  .hero-title {
    font-size: clamp(2.05rem, 10.5vh, 3.35rem);
  }

  .mountains {
    height: min(28%, 130px);
  }
}

@media (orientation: landscape) and (max-height: 420px) {
  .sheet {
    min-height: 390px;
  }

  .v1 .hero {
    bottom: 108px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 9.5vh, 2.95rem);
  }
}

/* MindEngineering full logo sizing */
@media (max-width: 760px) {
  .brand-logo-full {
    width: min(210px, 58vw);
  }
}

@media (max-width: 420px) {
  .brand-logo-full {
    width: min(188px, 58vw);
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .brand-logo-full {
    width: clamp(180px, 22vw, 240px);
  }
}

@media (orientation: landscape) and (max-height: 480px) {
  .brand-logo-full {
    width: clamp(165px, 22vw, 215px);
  }
}


/* --------------------------------------------------------------------------
   Build-safe overrides
   Purpose: keep the MindEngineering logo optically consistent online/offline.
   The logo is constrained by visible height, not width. This prevents oversized
   rendering when the image crop or browser cache differs between deployments.
   -------------------------------------------------------------------------- */
.brand-logo-full {
  height: 48px;
  width: auto;
  max-width: min(250px, 58vw);
  display: block;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand-logo-full {
    height: 46px;
    width: auto;
    max-width: min(250px, 64vw);
  }
}

@media (max-width: 420px) {
  .brand-logo-full {
    height: 44px;
    width: auto;
    max-width: min(240px, 64vw);
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .brand-logo-full {
    height: 42px;
    width: auto;
    max-width: min(240px, 30vw);
  }
}

@media (orientation: landscape) and (max-height: 480px) {
  .brand-logo-full {
    height: 38px;
    width: auto;
    max-width: min(220px, 28vw);
  }
}

/* --------------------------------------------------------------------------
   Update message
   Two controlled lines keep the longer German message clear and prevent
   collisions in portrait and landscape orientations.
   -------------------------------------------------------------------------- */
.hero-title-update {
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  line-height: .96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-title-update span {
  display: block;
}

@media (max-width: 760px) {
  .hero-title-update {
    font-size: clamp(1.85rem, 8.6vw, 3.15rem);
    line-height: .98;
    letter-spacing: -0.045em;
  }
}

@media (max-width: 420px) {
  .hero-title-update {
    font-size: clamp(1.65rem, 8.2vw, 2.55rem);
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .hero-title-update {
    font-size: clamp(1.65rem, 7.2vh, 2.7rem);
    line-height: .95;
  }
}

@media (orientation: landscape) and (max-height: 480px) {
  .hero-title-update {
    font-size: clamp(1.5rem, 6.9vh, 2.35rem);
  }
}

@media (orientation: landscape) and (max-height: 420px) {
  .hero-title-update {
    font-size: clamp(1.4rem, 6.5vh, 2.05rem);
  }
}

