:root {
  --bg-body: hsla(180, 1.59%, 12%, 1);
  --primary: hsla(27, 27%, 46%, 1);
  --primary-90: hsla(27, 27%, 46%, 0.9);
  --secondary: hsla(30, 29%, 95%, 1);
  --light: hsl(85, 0%, 100%);
  --light-10: hsla(0, 0%, 100%, 0.1);
  --light-20: hsla(0, 0%, 100%, 0.2);
  --radius-m: 1rem;
  --space-m: clamp(2.4rem, calc(0.5736137667vw + 2.2164435946rem), 3rem);
  --space-l: clamp(3.1992rem, calc(1.2435946463vw + 2.8012497132rem), 4.5rem);
  --h1: clamp(4rem, calc(4vw + 2rem), 5.5rem);
  --text-m: clamp(1.6rem, calc(0.1957vw + 1.5065rem), 1.8rem);
  --text-l: clamp(2rem, calc(1.108vw + 1.4704rem), 2.8rem);
}

@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/orbitron-v31-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/orbitron-v31-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/orbitron-v31-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/roboto-v30-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/roboto-v30-latin-500.woff2") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 100%;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: var(--text-m);
  line-height: 1.6;
  color: var(--secondary);
  background-color: var(--bg-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 400;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-m);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.content-box {
  width: 100%;
  padding: var(--space-l);
}

.tech-frame {
  position: relative;
  padding: var(--space-l);
}
.tech-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: var(--radius-m);
  height: 100%;
  pointer-events: none;
  border: 3px solid var(--secondary);
  mask: linear-gradient(black, black) no-repeat top left/30px 3px, linear-gradient(black, black) no-repeat bottom left/80px 3px, linear-gradient(black, black) no-repeat left/3% 100%, linear-gradient(black, black) no-repeat top right/80px 3px, linear-gradient(black, black) no-repeat bottom right/40px 3px, linear-gradient(black, black) no-repeat right/20px 100%;
  transform: skewx(-5deg);
}

.brand {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: var(--h1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 0.5rem;
  text-align: center;
  hyphens: auto;
  word-break: break-word;
}

.tagline {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: var(--text-l);
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-m);
  letter-spacing: 0.05em;
}

.message {
  max-width: 700px;
  margin: var(--space-l) auto;
  text-align: center;
}
.message p {
  margin-bottom: 1.5rem;
}
.message p:last-child {
  margin-bottom: 0;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-l);
}

.cta-button {
  position: relative;
  padding: 0.75em 2em;
  background: transparent;
  color: var(--secondary);
  text-decoration: none;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: var(--text-m);
  font-weight: 500;
  isolation: isolate;
  transition: color 300ms ease;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta-button::before {
  content: "";
  position: absolute;
  background: var(--primary);
  inset: 0;
  transform: skewx(-5deg);
  border-radius: var(--radius-m);
  z-index: -1;
  transition: background 300ms ease;
}
.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 40%, rgba(255, 255, 255, 0.15) 48%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.15) 52%, transparent 60%);
  transform: translateX(-53%);
  opacity: 0;
  will-change: transform, opacity;
}
.cta-button:hover::before {
  background: var(--primary-90);
}
.cta-button:hover::after {
  animation: sheen 0.9s ease forwards;
}

@keyframes sheen {
  0% {
    transform: translateX(-45%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translateX(45%);
    opacity: 0;
  }
}
.footer {
  text-align: center;
  padding: var(--space-m);
  font-size: calc(var(--text-m) * 0.875);
  color: var(--light-20);
  margin-top: auto;
}
.footer p {
  margin-bottom: 0.5rem;
}
.footer p:last-child {
  margin-bottom: 0;
}

.footer-link {
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease;
}
.footer-link:hover {
  border-bottom-color: var(--secondary);
}

.impressum-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-l);
}
.impressum-content .brand {
  margin-bottom: var(--space-l);
}

.impressum-section {
  margin-bottom: var(--space-m);
}
.impressum-section h2 {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: var(--text-l);
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.impressum-section h3 {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: calc(var(--text-l) * 0.8);
  font-weight: 400;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}
.impressum-section h4 {
  font-family: "Roboto", system-ui, sans-serif;
  font-size: calc(var(--text-m) * 1.1);
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.impressum-section p {
  line-height: 1.8;
}
.impressum-section ul {
  margin-left: 2rem;
  margin-top: 1rem;
}
.impressum-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}
.impressum-section a {
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--secondary);
  transition: opacity 300ms ease, border-color 300ms ease;
}
.impressum-section a:hover {
  opacity: 0.8;
  border-bottom-color: var(--primary);
}

.back-link {
  margin-top: var(--space-l);
  text-align: center;
}

@media (max-width: 768px) {
  .content-box {
    padding: var(--space-m);
  }
  .tech-frame {
    padding: var(--space-m);
  }
  .tech-frame::before {
    display: none;
  }
  .brand {
    font-size: calc(var(--h1) * 0.6);
  }
  .tagline {
    font-size: calc(var(--text-l) * 0.85);
  }
  .message {
    font-size: calc(var(--text-m) * 0.95);
  }
}/*# sourceMappingURL=styles.css.map */