/* sommerk.ai landing – Markenfarben aus Logo/Wordmark */
:root {
  --bg: #ffffff;
  /* Office-Themenfarben aus logo.pptx */
  --sommer: #548235; /* Grün, Akzent 6, dunkler 25% (Basis #70AD47) */
  --kai: #808080;    /* Schwarz, Text 1, heller 50% */
  --text-on-dark: #f5f5f5;
  --font: Arial, Helvetica, sans-serif;
  --wordmark-size: 36px; /* Arial 36 */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--kai);
}

body {
  overflow: hidden;
}

.screen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}

.screen-home {
  background: var(--bg);
  cursor: pointer;
}

.brand {
  position: absolute;
  right: clamp(1.25rem, 4vw, 2.5rem);
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  user-select: none;
}

.brand-bird {
  display: block;
  width: min(220px, 42vw);
  height: auto;
}

.brand-wordmark {
  margin: 0;
  font-family: var(--font);
  font-size: var(--wordmark-size);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.brand-sommer {
  color: var(--sommer);
}

.brand-kai {
  color: var(--kai);
}

.footer-link {
  position: absolute;
  left: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 2;
  font-family: var(--font);
  font-size: 14px;
  color: var(--kai);
  text-decoration: none;
  opacity: 0.75;
}

.footer-link:hover,
.footer-link:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.footer-link-on-dark {
  color: var(--text-on-dark);
}

.screen-build {
  background: #0b0b0b;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.screen-build[hidden] {
  display: none;
}

.build-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.typewriter {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.5rem;
  max-width: min(92vw, 28rem);
  font-family: var(--font);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--text-on-dark);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  min-height: 1.25em;
}

.typewriter::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.08em;
  vertical-align: -0.05em;
  background: currentColor;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Impressum */
.page-impressum {
  overflow: auto;
  background: var(--bg);
}

.impressum-wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--kai);
}

.impressum-wrap h1 {
  margin: 0 0 1.5rem;
  font-size: 36px;
  font-weight: 400;
  color: var(--sommer);
}

.brand-wordmark-inline {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.impressum-wrap a.mail-brand {
  color: inherit;
  text-decoration: none;
}

.impressum-wrap a.mail-brand:hover {
  text-decoration: underline;
}

.impressum-wrap a.mail-brand .brand-sommer {
  color: var(--sommer);
}

.impressum-wrap a.mail-brand .brand-kai {
  color: var(--kai);
}

.impressum-wrap h2 {
  margin: 2rem 0 0.75rem;
  font-size: 18px;
  font-weight: 700;
  color: var(--kai);
}

.impressum-wrap p {
  margin: 0 0 0.75rem;
}

.impressum-wrap a {
  color: var(--sommer);
}

.impressum-nav {
  margin-bottom: 2rem;
}

.impressum-nav a {
  font-size: 14px;
  color: var(--kai);
  text-decoration: none;
  opacity: 0.8;
}

.impressum-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}
