/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(1200px 500px at 50% -10%, #0b1220, #020617);
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  color: var(--text);
}

.clip-ribbon {
  width: 100%;
  height: 0;
  background: transparent;
  flex-shrink: 0;
}


.clip-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.4px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  margin-bottom: 20px;
}

