:root {
  --ink: #f0eee9;
  --muted: rgba(240, 238, 233, 0.53);
  --line: rgba(240, 238, 233, 0.18);
  --acid: #d7ff4a;
  --bg: #080909;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  z-index: 20;
  inset: -50%;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  animation: grain 0.18s steps(2) infinite;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(166, 172, 145, 0.13), rgba(8, 9, 9, 0) 67%);
  transition: opacity 0.5s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.site-header,
.site-footer {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.site-header {
  top: 0;
  height: 5rem;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  bottom: 0;
  height: 4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer p span {
  color: var(--acid);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.35s ease, background 0.35s ease;
}

.brand:hover .brand-mark {
  background: var(--acid);
  transform: rotate(360deg);
}

.status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0 rgba(215, 255, 74, 0.45);
  animation: pulse 2.2s infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 9rem 7vw 8rem;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.025), transparent 28%),
    radial-gradient(circle at 78% 25%, #292d2c 0, #111313 20%, var(--bg) 52%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.2), transparent 48%, rgba(0,0,0,0.08));
}

.hero-content {
  width: min(100%, 82rem);
}

.eyebrow {
  margin: 0 0 2.2rem 0.55rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: clamp(0.62rem, 0.8vw, 0.76rem);
  letter-spacing: 0.18em;
}

.eyebrow span {
  margin: 0 0.7rem;
  color: var(--acid);
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 11.4vw, 11.5rem);
  font-weight: 300;
  line-height: 0.79;
  letter-spacing: -0.075em;
}

h1 > span {
  display: block;
}

.title-line {
  margin-left: 8.5vw;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.period {
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin: 4rem 0.6rem 0 9vw;
}

.intro {
  margin: 0;
  max-width: 27rem;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 15rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  color: var(--acid);
  border-color: var(--acid);
}

.contact-link:hover .contact-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.frame-lines {
  position: absolute;
  inset: 6.5rem 2.5rem 5.5rem;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.6;
}

.corner-tl { top: 0; left: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.corner-tr { top: 0; right: 0; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); }
.corner-bl { bottom: 0; left: 0; border-bottom: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.corner-br { right: 0; bottom: 0; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }

.light-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  will-change: transform;
}

.light-orb-one {
  top: 15%;
  right: 8%;
  width: min(33vw, 32rem);
  aspect-ratio: 1;
  opacity: 0.22;
  background: radial-gradient(circle at 38% 35%, #a7ada2, #3e4442 35%, transparent 70%);
  animation: float-one 9s ease-in-out infinite alternate;
}

.light-orb-two {
  bottom: 1%;
  left: 2%;
  width: min(20vw, 17rem);
  aspect-ratio: 1;
  opacity: 0.12;
  background: radial-gradient(circle, var(--acid), transparent 67%);
  animation: float-two 11s ease-in-out infinite alternate;
}

.meta {
  position: absolute;
  bottom: 5.8rem;
  display: flex;
  gap: 0.65rem;
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.meta strong {
  color: var(--ink);
  font-weight: 300;
}

.meta-left { left: 1rem; }
.meta-right { right: 1rem; }

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  animation: reveal 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

h1.reveal { animation-delay: 0.15s; }
.hero-bottom.reveal { animation-delay: 0.32s; }

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(3%, -2%); }
  50% { transform: translate(-2%, 3%); }
  75% { transform: translate(4%, 2%); }
  100% { transform: translate(-3%, -4%); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 0.55rem rgba(215, 255, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(215, 255, 74, 0); }
}

@keyframes float-one {
  to { transform: translate(-3vw, 4vh) scale(1.08); }
}

@keyframes float-two {
  to { transform: translate(5vw, -4vh) scale(1.12); }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    padding-inline: 1.25rem;
  }

  .site-header { height: 4.25rem; }
  .site-footer { height: 3.5rem; }
  .status { font-size: 0; }
  .status-dot { width: 0.55rem; height: 0.55rem; }

  .hero {
    align-items: center;
    padding: 7rem 1.5rem 6rem;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 7.5rem);
    line-height: 0.84;
  }

  .title-line { margin-left: 0; }

  .hero-bottom {
    display: block;
    margin: 3rem 0 0;
  }

  .contact-link {
    width: 100%;
    margin-top: 2.3rem;
  }

  .frame-lines { inset: 5.4rem 1rem 4.5rem; }
  .meta { display: none; }
  .site-footer p:first-child { font-size: 0; }
  .site-footer p:first-child::after { content: "GERMANY / WORLDWIDE"; font-size: 0.58rem; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
