* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  animation: flicker 7s infinite;
}

:root {
  --ink: #1A2255;
  --accent: #E8449E;
}

@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@keyframes flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.985; } 91% { opacity: 0.96; } }
@keyframes scan { 0% { transform: translateY(-120%); } 100% { transform: translateY(120%); } }

a { color: inherit; }
a:hover { opacity: 0.7; }

.screen {
  min-height: 100vh;
  width: 100%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5vw;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.texture-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 5px 5px;
  z-index: 1;
}
.texture-lines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,0.03) 3px);
  z-index: 2;
}
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.09) 100%);
  z-index: 2;
}
.content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 700px;
  min-width: 0;
}

.logo {
  width: clamp(220px, 60vw, 640px);
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: clamp(-160px, -18vw, -65px);
}

.tagline {
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: clamp(3px, 1vw, 8px);
  color: var(--ink);
  transform: translateX(8px);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(16px, 3vw, 30px);
  padding: 8px 18px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.cursor { animation: blink 1s step-end infinite; }
