@font-face {
  font-family: "Aileron";
  src: url("Aileron-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aileron";
  src: url("Aileron-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* Sandra Scherzer – Coming Soon v2
   Text, Logo und Button sind echte HTML/SVG-Elemente und bleiben deshalb auf Retina-
   sowie hochauflösenden Displays scharf.
   Aileron wird als lokale Schrift vorgesehen. Bis die Webfont-Dateien ergänzt sind,
   fällt die Seite auf Helvetica/Arial zurück. */

:root {
  --navy: #072056;
  --white: #ffffff;
  --gold: #D6BDA2;
  --ticker-text: #072056;
  --ticker-height: 42px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: "Aileron", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.ticker {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--ticker-height);
  overflow: hidden;
  background: #fff;
  color: var(--ticker-text);
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 68s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.ticker span {
  display: block;
  flex-shrink: 0;
  width: 192px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100vh;
  overflow: hidden;
  padding-top: var(--ticker-height);
  background-color: var(--navy);
  background-image: url("gradient.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.brand-logo {
  position: absolute;
  z-index: 2;
  top: 14.25%;
  left: 50%;
  transform: translateX(-50%);
  width: 315px;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 34.1%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1420px, 88vw);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 4.45vw, 85px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
}

h1 span {
  display: inline;
}

.headline-accent {
  color: var(--gold);
}

.hero-content p {
  width: min(850px, 62vw);
  margin: 34px auto 0;
  font-size: clamp(17px, 1.12vw, 22px);
  line-height: 1.45;
  font-weight: 400;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 315px;
  height: 64px;
  margin-top: 46px;
  padding: 0 28px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color .22s ease,
    color .22s ease,
    transform .22s ease,
    border-color .22s ease;
}

.cta:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.cta:focus-visible {
  outline: 3px solid rgba(255,255,255,.92);
  outline-offset: 4px;
}

@media (max-width: 767px) {
  :root {
    --ticker-height: 38px;
  }

  .ticker-track {
    animation-duration: 56s;
  }

  .ticker span {
    width: 190px;
    font-size: 12px;
  }

  .hero {
    min-height: 932px;
    height: max(100svh, 932px);
    background-size: auto 100%;
    background-position: 50% center;
  }

  .brand-logo {
    top: 11.1%;
    width: 270px;
  }

  .hero-content {
    top: 32.1%;
    width: calc(100% - 38px);
  }

  h1 {
    font-size: clamp(39px, 10.8vw, 47px);
    line-height: 1.02;
    letter-spacing: -0.028em;
  }

  h1 span {
    display: block;
  }

  .headline-accent {
    color: var(--gold);
  }

  .hero-content p {
    width: 96%;
    max-width: 390px;
    margin-top: 28px;
    font-size: 19px;
    line-height: 1.42;
  }

  .cta {
    width: min(356px, 92%);
    min-width: 0;
    height: 70px;
    margin-top: 48px;
    padding: 0 16px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .brand-logo {
    top: 13.8%;
    width: 285px;
  }

  .hero-content {
    top: 34%;
    width: 90vw;
  }

  .hero-content p {
    width: min(760px, 75vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .cta {
    transition: none;
  }
}
