* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #050505;
  --color-bg-elevated: #1a1a1a;
  --color-cyan: #4dd9e8;
  --color-cyan-dark: #2bb8c7;
  --color-white: #ffffff;
  --color-gray: #8a8a8a;
  --color-gray-light: #c8c8c8;
  --color-border: #1f1f1f;
  --color-border-light: #2a2a2a;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1280px;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--color-cyan);
  color: var(--color-bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--color-cyan);
}

.highlight {
  color: var(--color-cyan);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--color-cyan);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(77, 217, 232, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.btn-secondary:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.btn:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 3px;
}

.btn-arrow {
  transition: transform 0.3s var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOVED NOTICE */
.moved {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.moved-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.6) 60%, rgba(5, 5, 5, 0.9) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(77, 217, 232, 0.1), transparent 60%);
  pointer-events: none;
}

.moved-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  padding-bottom: 4rem;
  animation: fadeUp 1s var(--transition);
}

.moved-logo {
  width: 96px;
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.moved-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.moved-lead {
  font-size: 1.1rem;
  color: var(--color-gray-light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.moved-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.moved-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.moved-note a {
  color: var(--color-cyan);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--transition);
}

.moved-note a:hover {
  border-bottom-color: var(--color-cyan);
}

.moved-footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray);
}

.moved-footer-sep {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-cyan);
}

.moved-footer a:hover {
  color: var(--color-cyan);
}

@media (max-width: 600px) {
  .moved-logo {
    width: 72px;
    margin-bottom: 2rem;
  }

  .moved-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .moved-footer {
    bottom: 1.25rem;
  }
}
